matis bug 管理系统的主要表格

matis bug 管理系统的主要表格 drop   index  " PRIMARY on  mantis_user_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_user_cookie_string  on  mantis_user_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_user_username  on  mantis_user_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_enable  on  mantis_user_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_access  on  mantis_user_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   table   if   exists  mantis_user_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Table: mantis_user_table                                     */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   table   if   not   exists  mantis_user_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id                             
integer  unsigne( 10 )             default   ' 0 ' ,
matis bug 管理系统的主要表格   username                       
varchar ( 32 )                     not   null ,
matis bug 管理系统的主要表格   realname                       
varchar ( 64 )                     not   null ,
matis bug 管理系统的主要表格   email                          
varchar ( 64 )                     not   null ,
matis bug 管理系统的主要表格   "password"                     
varchar ( 32 )                     not   null ,
matis bug 管理系统的主要表格   date_created                   
datetime                         not   null   default   ' 1970-01-01 00:00:01 ' ,
matis bug 管理系统的主要表格   last_visit                     
datetime                         not   null   default   ' 1970-01-01 00:00:01 ' ,
matis bug 管理系统的主要表格   enabled                        
tinyint ( 3 )                      not   null   default   1 ,
matis bug 管理系统的主要表格   protected                      
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   access_level                   
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   login_count                    
integer ( 10 )                     not   null   default   0 ,
matis bug 管理系统的主要表格   lost_password_request_         
smallint ( 5 )                     not   null   default   0 ,
matis bug 管理系统的主要表格   failed_login_count             
smallint ( 5 )                     not   null   default   0 ,
matis bug 管理系统的主要表格   cookie_string                  
varchar ( 64 )                     not   null ,
matis bug 管理系统的主要表格   
primary   key  (id)
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: "PRIMARY"                                             */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   unique   index  " PRIMARY on  mantis_user_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_user_cookie_string                                */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   unique   index  idx_user_cookie_string  on  mantis_user_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   cookie_string
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_user_username                                     */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   unique   index  idx_user_username  on  mantis_user_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   username
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_enable                                            */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_enable  on  mantis_user_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   enabled
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_access                                            */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_access  on  mantis_user_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   access_level
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格

 

matis bug 管理系统的主要表格 drop   index  " PRIMARY on  mantis_project_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_project_name  on  mantis_project_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_project_id  on  mantis_project_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_project_view  on  mantis_project_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   table   if   exists  mantis_project_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Table: mantis_project_table                                  */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   table   if   not   exists  mantis_project_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id                             
integer  unsigne( 10 )             default   ' 0 ' ,
matis bug 管理系统的主要表格   项目名称                           
varchar ( 128 )                    not   null ,
matis bug 管理系统的主要表格   "status"                       
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   enabled                        
tinyint ( 3 )                      not   null   default   1 ,
matis bug 管理系统的主要表格   view_state                     
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   access_min                     
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   file_path                      
varchar ( 250 )                    not   null ,
matis bug 管理系统的主要表格   description                    
text                             not   null ,
matis bug 管理系统的主要表格   
primary   key  (id)
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: "PRIMARY"                                             */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   unique   index  " PRIMARY on  mantis_project_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_project_name                                      */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   unique   index  idx_project_name  on  mantis_project_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   项目名称
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_project_id                                        */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_project_id  on  mantis_project_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_project_view                                      */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_project_view  on  mantis_project_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   view_state
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格

 

 

matis bug 管理系统的主要表格 drop   index  " PRIMARY on  mantis_bug_file_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_bug_file_bug_id  on  mantis_bug_file_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   table   if   exists  mantis_bug_file_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Table: mantis_bug_file_table                                 */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   table   if   not   exists  mantis_bug_file_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id                             
integer  unsigne( 10 )             default   ' 0 ' ,
matis bug 管理系统的主要表格   bug_id                         
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   title                          
varchar ( 250 )                    not   null ,
matis bug 管理系统的主要表格   description                    
varchar ( 250 )                    not   null ,
matis bug 管理系统的主要表格   diskfile                       
varchar ( 250 )                    not   null ,
matis bug 管理系统的主要表格   filename                       
varchar ( 250 )                    not   null ,
matis bug 管理系统的主要表格   folder                         
varchar ( 250 )                    not   null ,
matis bug 管理系统的主要表格   filesize                       
integer ( 10 )                     not   null   default   0 ,
matis bug 管理系统的主要表格   file_type                      
varchar ( 250 )                    not   null ,
matis bug 管理系统的主要表格   date_added                     
datetime                         not   null   default   ' 1970-01-01 00:00:01 ' ,
matis bug 管理系统的主要表格   content                        blob                           
not   null ,
matis bug 管理系统的主要表格   
primary   key  (id)
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: "PRIMARY"                                             */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   unique   index  " PRIMARY on  mantis_bug_file_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_bug_file_bug_id                                   */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_bug_file_bug_id  on  mantis_bug_file_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   bug_id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格

 

 

 

matis bug 管理系统的主要表格 drop   index  " PRIMARY on  mantis_bug_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_bug_sponsorship_to  on  mantis_bug_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_bug_fixed_in_versi  on  mantis_bug_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_bug_status  on  mantis_bug_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_project  on  mantis_bug_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   table   if   exists  mantis_bug_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Table: mantis_bug_table                                      */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   table   if   not   exists  mantis_bug_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id                             
integer  unsigne( 10 )             default   ' 0 ' ,
matis bug 管理系统的主要表格   project_id                     
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   reporter_id                    
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   handler_id                     
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   duplicate_id                   
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   priority                       
smallint ( 5 )                     not   null   default   30 ,
matis bug 管理系统的主要表格   severity                       
smallint ( 5 )                     not   null   default   50 ,
matis bug 管理系统的主要表格   reproducibility                
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   "status"                       
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   resolution                     
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   projection                     
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   category                       
varchar ( 64 )                     not   null ,
matis bug 管理系统的主要表格   date_submitted                 
datetime                         not   null   default   ' 1970-01-01 00:00:01 ' ,
matis bug 管理系统的主要表格   last_updated                   
datetime                         not   null   default   ' 1970-01-01 00:00:01 ' ,
matis bug 管理系统的主要表格   eta                            
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   bug_text_id                    
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   os                             
varchar ( 32 )                     not   null ,
matis bug 管理系统的主要表格   os_build                       
varchar ( 32 )                     not   null ,
matis bug 管理系统的主要表格   platform                       
varchar ( 32 )                     not   null ,
matis bug 管理系统的主要表格   version                        
varchar ( 64 )                     not   null ,
matis bug 管理系统的主要表格   fixed_in_version               
varchar ( 64 )                     not   null ,
matis bug 管理系统的主要表格   build                          
varchar ( 32 )                     not   null ,
matis bug 管理系统的主要表格   profile_id                     
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   view_state                     
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   summary                        
varchar ( 128 )                    not   null ,
matis bug 管理系统的主要表格   sponsorship_total              
integer ( 10 )                     not   null   default   0 ,
matis bug 管理系统的主要表格   sticky                         
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   
primary   key  (id)
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: "PRIMARY"                                             */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   unique   index  " PRIMARY on  mantis_bug_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_bug_sponsorship_to                                */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_bug_sponsorship_to  on  mantis_bug_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   sponsorship_total
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_bug_fixed_in_versi                                */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_bug_fixed_in_versi  on  mantis_bug_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   fixed_in_version
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_bug_status                                        */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_bug_status  on  mantis_bug_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   "status"
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_project                                           */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_project  on  mantis_bug_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   project_id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格

 

 

matis bug 管理系统的主要表格 drop   index  " PRIMARY on  mantis_bugnote_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_bug  on  mantis_bugnote_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   index  idx_last_mod  on  mantis_bugnote_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   table   if   exists  mantis_bugnote_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Table: mantis_bugnote_table                                  */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   table   if   not   exists  mantis_bugnote_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id                             
integer  unsigne( 10 )             default   ' 0 ' ,
matis bug 管理系统的主要表格   bug_id                         
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   reporter_id                    
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   bugnote_text_id                
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   view_state                     
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   date_submitted                 
datetime                         not   null   default   ' 1970-01-01 00:00:01 ' ,
matis bug 管理系统的主要表格   last_modified                  
datetime                         not   null   default   ' 1970-01-01 00:00:01 ' ,
matis bug 管理系统的主要表格   note_type                      
integer ( 10 )                     default   0 ,
matis bug 管理系统的主要表格   note_attr                      
varchar ( 250 ),
matis bug 管理系统的主要表格   
primary   key  (id)
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: "PRIMARY"                                             */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   unique   index  " PRIMARY on  mantis_bugnote_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_bug                                               */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_bug  on  mantis_bugnote_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   bug_id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: idx_last_mod                                          */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   index  idx_last_mod  on  mantis_bugnote_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   last_modified
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格

 

matis bug 管理系统的主要表格 drop   index  " PRIMARY on  mantis_news_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   table   if   exists  mantis_news_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Table: mantis_news_table                                     */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   table   if   not   exists  mantis_news_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id                             
integer  unsigne( 10 )             default   ' 0 ' ,
matis bug 管理系统的主要表格   project_id                     
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   poster_id                      
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   date_posted                    
datetime                         not   null   default   ' 1970-01-01 00:00:01 ' ,
matis bug 管理系统的主要表格   last_modified                  
datetime                         not   null   default   ' 1970-01-01 00:00:01 ' ,
matis bug 管理系统的主要表格   view_state                     
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   announcement                   
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   headline                       
varchar ( 64 )                     not   null ,
matis bug 管理系统的主要表格   body                           
text                             not   null ,
matis bug 管理系统的主要表格   
primary   key  (id)
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: "PRIMARY"                                             */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   unique   index  " PRIMARY on  mantis_news_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格

 

matis bug 管理系统的主要表格 drop   index  " PRIMARY on  mantis_user_pref_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
drop   table   if   exists  mantis_user_pref_table;
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Table: mantis_user_pref_table                                */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   table   if   not   exists  mantis_user_pref_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id                             
integer  unsigne( 10 )             default   ' 0 ' ,
matis bug 管理系统的主要表格   
user_id                          integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   project_id                     
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   default_profile                
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   default_project                
integer  unsigne( 10 )             not   null   default   ' 0 ' ,
matis bug 管理系统的主要表格   advanced_report                
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   advanced_view                  
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   advanced_update                
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   refresh_delay                  
integer ( 10 )                     not   null   default   0 ,
matis bug 管理系统的主要表格   redirect_delay                 
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   bugnote_order                  
varchar ( 4 )                      not   null   default   ' ASC ' ,
matis bug 管理系统的主要表格   email_on_new                   
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   email_on_assigned              
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   email_on_feedback              
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   email_on_resolved              
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   email_on_closed                
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   email_on_reopened              
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   email_on_bugnote               
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   email_on_status                
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   email_on_priority              
tinyint ( 3 )                      not   null   default   0 ,
matis bug 管理系统的主要表格   email_on_priority_min_         
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   email_on_status_min_se         
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   email_on_bugnote_min_s         
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   email_on_reopened_min_         
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   email_on_closed_min_se         
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   email_on_resolved_min_         
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   email_on_feedback_min_         
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   email_on_assigned_min_         
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   email_on_new_min_sever         
smallint ( 5 )                     not   null   default   10 ,
matis bug 管理系统的主要表格   email_bugnote_limit            
smallint ( 5 )                     not   null   default   0 ,
matis bug 管理系统的主要表格   language                       
varchar ( 32 )                     not   null   default   ' english ' ,
matis bug 管理系统的主要表格   
primary   key  (id)
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
/* Index: "PRIMARY"                                             */
matis bug 管理系统的主要表格
/*==============================================================*/
matis bug 管理系统的主要表格
create   unique   index  " PRIMARY on  mantis_user_pref_table
matis bug 管理系统的主要表格(
matis bug 管理系统的主要表格   id
matis bug 管理系统的主要表格);
matis bug 管理系统的主要表格

你可能感兴趣的:(bug)