Changeset 19209


Ignore:
Timestamp:
2010/11/07 00:07:02 (13 years ago)
Author:
miningbrownie
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_5-E/html/install/sql/create_table_mysql.sql

    r19208 r19209  
    12511251 
    12521252CREATE TABLE "dtb_plugin" ( 
    1253   "id" int4 NOT NULL DEFAULT NULL, 
    1254   "name" text NOT NULL DEFAULT NULL, 
    1255   "enable" int2 NOT NULL DEFAULT 0, 
    1256   "del_flg" int2 NOT NULL DEFAULT 0, 
    1257   "class_name" text NOT NULL DEFAULT NULL, 
    1258   "create_date" timestamp(6) NOT NULL DEFAULT now(), 
    1259   "update_date" timestamp(6) NOT NULL DEFAULT now() 
     1253  id int4 NOT NULL DEFAULT NULL, 
     1254  name text NOT NULL DEFAULT NULL, 
     1255  enable int2 NOT NULL DEFAULT 0, 
     1256  del_flg int2 NOT NULL DEFAULT 0, 
     1257  class_name text NOT NULL DEFAULT NULL, 
     1258  create_date DATETIME NOT NULL DEFAULT now(), 
     1259  update_date DATETIME NOT NULL DEFAULT now() 
    12601260) 
    12611261WITH (OIDS=FALSE); 
Note: See TracChangeset for help on using the changeset viewer.