feat: 主题切换sql依赖
This commit is contained in:
parent
5ca005b336
commit
9a69f8a23f
@ -4,4 +4,54 @@
|
||||
BEGIN;
|
||||
INSERT INTO `sys_msg_type` VALUES (7, 0, 'i18n_msg_type_ds_invalid', 'datasource', 'to-msg-ds');
|
||||
INSERT INTO `sys_msg_type` VALUES (8, 7, 'i18n_msg_type_ds_invalid', 'datasource', 'to-msg-ds');
|
||||
COMMIT;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for system_parameter
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `system_parameter`;
|
||||
CREATE TABLE `system_parameter` (
|
||||
`param_key` varchar(64) NOT NULL COMMENT 'Parameter name',
|
||||
`param_value` varchar(255) DEFAULT NULL COMMENT 'Parameter value',
|
||||
`type` varchar(100) NOT NULL DEFAULT 'text' COMMENT 'Parameter type',
|
||||
`sort` int(5) DEFAULT NULL COMMENT 'Sort',
|
||||
PRIMARY KEY (`param_key`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of system_parameter
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
INSERT INTO `system_parameter` VALUES ('', NULL, 'text', NULL);
|
||||
INSERT INTO `system_parameter` VALUES ('default.language', 'zh_CN', 'text', -1);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.favicon', NULL, 'file', -1);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.loginImage', NULL, 'file', 4);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.loginLogo', NULL, 'file', 5);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.loginTitle', NULL, 'text', 3);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.logo', NULL, 'file', 6);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.theme', NULL, 'text', 2);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.title', NULL, 'text', 1);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.topMenuActiveColor', NULL, 'text', 8);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.topMenuColor', NULL, 'text', 7);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.topMenuTextActiveColor', NULL, 'text', 10);
|
||||
INSERT INTO `system_parameter` VALUES ('ui.topMenuTextColor', NULL, 'text', 9);
|
||||
COMMIT;
|
||||
Loading…
Reference in New Issue
Block a user