source: tmp/version-2_5-test/html/install/sql/add/dtb_trackback_mysql.sql @ 18609

Revision 18609, 415 bytes checked in by kajiwara, 14 years ago (diff)

正式版にナイトリービルド版をマージしてみるテスト

  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
Line 
1CREATE TABLE dtb_trackback (
2    trackback_id int auto_increment NOT NULL,
3    product_id int NOT NULL,
4    blog_name varchar(255) NOT NULL DEFAULT '',
5    title varchar(255) NOT NULL DEFAULT '',
6    excerpt text NOT NULL ,
7    url text NOT NULL ,
8    status int NOT NULL DEFAULT 2,
9    del_flg int NOT NULL DEFAULT 0,
10    create_date datetime NOT NULL,
11    update_date datetime NOT NULL,
12    PRIMARY KEY (trackback_id)
13) TYPE=InnoDB;
Note: See TracBrowser for help on using the repository browser.