lx-template/backups/2025-04-09/2025-04-09_system_theme.sql
2025-04-17 10:14:18 +08:00

28 lines
1.3 KiB
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.

/*
Dreamer CMS 数据库备份工具 时间2025-04-09
*/
DROP TABLE IF EXISTS `system_theme`;
/*
Table structure for table `system_theme`
*/
CREATE TABLE `system_theme` (
`id` varchar(32) NOT NULL,
`theme_name` varchar(128) NOT NULL COMMENT '风格名称',
`theme_author` varchar(32) DEFAULT NULL COMMENT '作者',
`theme_img` varchar(128) NOT NULL COMMENT '缩略图',
`theme_path` varchar(128) DEFAULT NULL COMMENT '目录名',
`status` int DEFAULT '0' COMMENT '状态1:启用0:禁用',
`create_by` varchar(32) DEFAULT NULL,
`create_time` timestamp NOT NULL DEFAULT '2018-01-01 00:00:00',
`update_by` varchar(32) DEFAULT NULL,
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*
Data for table `system_theme`
*/
INSERT INTO `system_theme`(`create_by`, `create_time`, `id`, `status`, `theme_author`, `theme_img`, `theme_name`, `theme_path`, `update_by`, `update_time`) VALUES ('9f4b807db2e94670bb02cdc212ea7389', STR_TO_DATE('2023-01-09 14:30:31','%Y-%m-%d %H:%i:%s'), '3333bcc53fdd4124a4f292ef1aabb2f6', 1, '王俊南', '20230111/3d7e456c797d4cd0bb9d6034336cc2da.png', '新版主题', 'default_v2', '', STR_TO_DATE('2025-04-09 10:27:47','%Y-%m-%d %H:%i:%s'));