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

30 lines
1.6 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_setting`;
/*
Table structure for table `system_setting`
*/
CREATE TABLE `system_setting` (
`id` varchar(32) NOT NULL,
`website` varchar(128) NOT NULL COMMENT '网站地址',
`title` varchar(64) NOT NULL COMMENT '站点标题',
`keywords` varchar(128) NOT NULL COMMENT '站点关键词',
`describe` varchar(256) NOT NULL COMMENT '站点描述',
`icp` varchar(32) NOT NULL COMMENT '备案号',
`copyright` varchar(128) NOT NULL COMMENT '版权',
`uploaddir` varchar(32) DEFAULT 'uploads/' COMMENT '上传目录',
`appid` varchar(128) DEFAULT NULL COMMENT '畅言appid',
`appkey` varchar(128) DEFAULT NULL COMMENT '畅言appkey',
`staticdir` varchar(32) DEFAULT 'htmls' COMMENT '静态化目录',
`browse_type` int DEFAULT '1' COMMENT '浏览方式1动态2静态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*
Data for table `system_setting`
*/
INSERT INTO `system_setting`(`appid`, `appkey`, `browse_type`, `copyright`, `describe`, `icp`, `id`, `keywords`, `staticdir`, `title`, `uploaddir`, `website`) VALUES ('', '', 1, 'Copyright © 2018 Powered by I Teach You我教你Dreamer CMS 梦想家内容管理系统', 'Dreamer CMS 梦想家内容管理系统是国内首款java开发的内容发布系统采用最流行的springboot+thymeleaf框架搭建灵活小巧配置简单。', '冀ICP备19026223号', '1', 'Dreamer CMS 梦想家内容管理系统', 'htmls', 'Dreamer CMS 梦想家内容管理系统', 'uploads', 'http://192.168.1.88:8888/');