Changeset 19184
- Timestamp:
- 2010/11/06 23:48:59 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/camp/camp-2_5-E/html/install/sql/create_table_pgsql.sql
r18882 r19184 1261 1261 CREATE INDEX dtb_mobile_kara_mail_create_date_key ON dtb_mobile_kara_mail (create_date); 1262 1262 CREATE INDEX dtb_mobile_kara_mail_receive_date_key ON dtb_mobile_kara_mail (receive_date); 1263 1264 DROP TABLE IF EXISTS "dtb_plugin"; 1265 CREATE TABLE "dtb_plugin" ( 1266 "id" int4 NOT NULL DEFAULT NULL, 1267 "name" text NOT NULL DEFAULT NULL, 1268 "enable" int2 NOT NULL DEFAULT 0, 1269 "del_flg" int2 NOT NULL DEFAULT 0, 1270 "class_name" text NOT NULL DEFAULT NULL, 1271 "create_date" timestamp(6) NOT NULL DEFAULT now(), 1272 "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");
Note: See TracChangeset
for help on using the changeset viewer.