source: branches/comu-utf8/html/install/sql/add/dtb_site_control_pgsql.sql @ 15099

Revision 15099, 511 bytes checked in by Yammy, 17 years ago (diff)

UTF-8変換済みファイルインポート
1.3.4ベース

Line 
1CREATE TABLE dtb_site_control (
2    control_id serial primary key NOT NULL,
3    control_title text ,
4    control_text text ,
5    control_flg int2 NOT NULL DEFAULT 2,
6    del_flg int2 NOT NULL DEFAULT 0,
7    memo text ,
8    create_date timestamp NOT NULL DEFAULT now(),
9    update_date timestamp NOT NULL DEFAULT now()
10);
11
12INSERT INTO dtb_site_control (control_title, control_text) VALUES('トラックバック機能', 'トラックバック機能を使用するかどうかを決定します。');
Note: See TracBrowser for help on using the repository browser.