Changeset 19184


Ignore:
Timestamp:
2010/11/06 23:48:59 (13 years ago)
Author:
nakanishi
Message:

プラグイン用のテーブルを作成するSQLを追加。

File:
1 edited

Legend:

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

    r18882 r19184  
    12611261CREATE INDEX dtb_mobile_kara_mail_create_date_key ON dtb_mobile_kara_mail (create_date); 
    12621262CREATE INDEX dtb_mobile_kara_mail_receive_date_key ON dtb_mobile_kara_mail (receive_date); 
     1263 
     1264DROP TABLE IF EXISTS "dtb_plugin"; 
     1265CREATE 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) 
     1274WITH (OIDS=FALSE); 
     1275ALTER TABLE "dtb_plugin" ADD CONSTRAINT "dtb_plugin_pkey" PRIMARY KEY ("id"); 
Note: See TracChangeset for help on using the changeset viewer.