Changeset 19241
- Timestamp:
- 2010/11/07 00:17:55 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/camp/camp-2_5-E/html/install/sql/create_table_pgsql.sql
r19184 r19241 1262 1262 CREATE INDEX dtb_mobile_kara_mail_receive_date_key ON dtb_mobile_kara_mail (receive_date); 1263 1263 1264 DROP TABLE IF EXISTS "dtb_plugin";1265 1264 CREATE TABLE "dtb_plugin" ( 1266 " id" int4 NOT NULL DEFAULT NULL,1267 " name" text NOT NULLDEFAULT NULL,1265 "plugin_id" int4 primary key NOT NULL, 1266 "plugin_name" varchar(255) DEFAULT NULL, 1268 1267 "enable" int2 NOT NULL DEFAULT 0, 1269 1268 "del_flg" int2 NOT NULL DEFAULT 0, 1270 "class_name" text NOT NULLDEFAULT NULL,1269 "class_name" varchar(255) DEFAULT NULL, 1271 1270 "create_date" timestamp(6) NOT NULL DEFAULT now(), 1272 1271 "update_date" timestamp(6) NOT NULL DEFAULT now() 1273 ) 1274 WITH (OIDS=FALSE); 1275 ALTER TABLE "dtb_plugin" ADD CONSTRAINT "dtb_plugin_pkey" PRIMARY KEY ("id"); 1272 );
Note: See TracChangeset
for help on using the changeset viewer.