update at 2023/08/14

This commit is contained in:
2023-08-14 21:41:37 +08:00
parent a039a664f1
commit 44e8cbee2c
255 changed files with 20426 additions and 233 deletions

View File

@@ -0,0 +1,13 @@
DROP TRIGGER IF EXISTS `tg_account_menu`;
ALTER TABLE `omc_db`.`gold_kpi`
MODIFY COLUMN `value` bigint NULL DEFAULT 0 AFTER `kpi_id`;
ALTER TABLE `omc_db`.`user`
DROP INDEX IF EXISTS `account_id`,
DROP INDEX IF EXISTS `idx_uni_user_acc_id`,
ADD UNIQUE INDEX `idx_uni_user_acc_id`(`account_id`) USING BTREE;
ALTER TABLE `omc_db`.`ne_link` DROP INDEX IF EXISTS `idx_netype_neid`;
ALTER TABLE `omc_db`.`user`
MODIFY COLUMN `password_expiration` date NULL DEFAULT NULL AFTER `change_password_flag`,
MODIFY COLUMN `user_expiration` date NULL DEFAULT NULL AFTER `status`;
ALTER TABLE `omc_db`.`config`
ADD COLUMN IF NOT EXISTS `comment` varchar(255) NULL AFTER `update_time`;