fix
This commit is contained in:
10
ddl/fs_standard_logo.sql
Normal file
10
ddl/fs_standard_logo.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
-- fusentest.fs_standard_logo definition
|
||||
|
||||
CREATE TABLE `fs_standard_logo` (
|
||||
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'ID',
|
||||
`name` varchar(20) CHARACTER SET utf8mb4 NOT NULL COMMENT 'logo名称',
|
||||
`image` varchar(255) CHARACTER SET utf8mb4 NOT NULL COMMENT '图片地址',
|
||||
`ctime` int(10) NOT NULL DEFAULT '0' COMMENT '添加时间',
|
||||
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态 1正常 0删除',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='标准logo';
|
||||
Reference in New Issue
Block a user