fix
This commit is contained in:
9
ddl/fs_product_template_tags.sql
Normal file
9
ddl/fs_product_template_tags.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
-- fusentest.fs_product_template_tags definition
|
||||
|
||||
CREATE TABLE `fs_product_template_tags` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
|
||||
`title` varchar(25) NOT NULL COMMENT '标题',
|
||||
`status` tinyint(1) unsigned NOT NULL COMMENT '状态 1:可用',
|
||||
`create_at` int(10) unsigned NOT NULL COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT=' 模板标签表';
|
||||
Reference in New Issue
Block a user