This commit is contained in:
laodaming
2023-06-06 13:07:39 +08:00
parent 834a560451
commit 213665eb59
18 changed files with 335 additions and 99 deletions

View 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=' 模板标签表';