This commit is contained in:
2023-10-12 18:08:43 +08:00
parent 936aa5906f
commit 27f7d97168
2 changed files with 4 additions and 4 deletions

View File

@@ -71,8 +71,8 @@ ADD COLUMN IF NOT EXISTS `comment` varchar(255) NULL AFTER `account_id`;
ALTER TABLE `omc_db`.`u_auth_user` ENGINE = InnoDB;
ALTER TABLE `omc_db`.`u_sub_user` ENGINE = InnoDB;
INSERT IGNORE INTO `omc_db`.`config` (`module_name`, `config_tag`, `title_json`, `value`, `value_json`, `comment`)
VALUES ('System', 'logo', '{\"cn\":\"系统LOGO\",\"en\":\"System LOGO\"}', 'logo30.png', '', '');
INSERT IGNORE INTO `omc_db`.`config` (`id`, `module_name`, `config_tag`, `title_json`, `value`, `value_json`, `comment`)
VALUES ('37', 'System', 'logo', '{\"cn\":\"系统LOGO\",\"en\":\"System LOGO\"}', 'logo30.png', '', '');
ALTER TABLE `omc_db`.`security_log`
MODIFY COLUMN `id` int(10) NOT NULL AUTO_INCREMENT FIRST;

View File

@@ -48,10 +48,10 @@ ReleaseDebs = $(ReleaseDir)/debs/$(PLATFORM)
CrontaskSize = 27788951
RestagentSize = 29525312
BinWriterDir = $(HOME)/bin
ifeq ($(shell cat |grep VERSION_ID /etc/os-release), VERSION_ID="22.04")
ifeq ($(shell grep VERSION_ID /etc/os-release), VERSION_ID="22.04")
DebBuildDir := $(DebBuild2204Dir)
DebPkgFile := $(PROJECT)-$(VERSION)-22.04-$(Release).$(PLATFORM).deb
else ifeq ($(shell cat |grep VERSION_ID /etc/os-release), VERSION_ID="18.04")
else ifeq ($(shell grep VERSION_ID /etc/os-release), VERSION_ID="18.04")
DebPkgFile := $(PROJECT)-$(VERSION)-$(Release).$(PLATFORM).deb
endif