27 lines
1.4 KiB
SQL
27 lines
1.4 KiB
SQL
CREATE TABLE IF NOT EXISTS `sys_home_template` (
|
|
`id` varchar(32) NOT NULL COMMENT 'business id',
|
|
`name` varchar(50) DEFAULT NULL COMMENT 'template name',
|
|
`templateName` varchar(50) DEFAULT NULL COMMENT 'display template name',
|
|
`templateIcon` varchar(255) DEFAULT NULL COMMENT 'template icon',
|
|
`templateFile` varchar(1000) DEFAULT NULL COMMENT 'template file',
|
|
`cover` varchar(255) DEFAULT NULL COMMENT 'template cover',
|
|
`content` text COMMENT 'template content',
|
|
`url` varchar(1000) DEFAULT NULL COMMENT 'pc url',
|
|
`h5Url` varchar(1000) DEFAULT NULL COMMENT 'h5 url',
|
|
`allowUserGroupId` int DEFAULT NULL COMMENT 'allowed user group id',
|
|
`allowUserSql` varchar(1000) DEFAULT NULL COMMENT 'allowed user sql',
|
|
`enable` tinyint(1) DEFAULT 0 COMMENT 'enabled',
|
|
`classPath` varchar(500) DEFAULT NULL COMMENT 'source class path',
|
|
`top` tinyint(1) DEFAULT 0 COMMENT 'top flag',
|
|
`push` tinyint(1) DEFAULT 0 COMMENT 'push flag',
|
|
`sortNo` int DEFAULT 0 COMMENT 'sort number',
|
|
`startDate` datetime DEFAULT NULL COMMENT 'start date',
|
|
`endDate` datetime DEFAULT NULL COMMENT 'end date',
|
|
`createdBy` varchar(32) DEFAULT NULL,
|
|
`createdAt` bigint DEFAULT NULL,
|
|
`updatedBy` varchar(32) DEFAULT NULL,
|
|
`updatedAt` bigint DEFAULT NULL,
|
|
`delFlag` tinyint(1) DEFAULT 0,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='home work template';
|