fusenapi/ddl/fs_faq.sql

13 lines
609 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- fusentest.fs_faq definition
CREATE TABLE `fs_faq` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tag_id` int(11) NOT NULL COMMENT '分类ID',
`tag_name` varchar(50) NOT NULL COMMENT '分类名称',
`title` varchar(64) NOT NULL COMMENT '标题',
`content` text COMMENT '内容',
`status` smallint(6) NOT NULL DEFAULT '0' COMMENT '状态(0:禁用1:启用)',
`sort` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
`ctime` int(11) DEFAULT NULL COMMENT '添加时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='常见问题';