source: trunk/html/install/sql/add/dtb_site_control_pgsql.sql @ 18562

Revision 18562, 499 bytes checked in by kajiwara, 14 years ago (diff)

EC-CUBE Ver2.4.3 分コミット。詳細はこちら( http://www.ec-cube.net/release/detail.php?release_id=210

  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
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.