【修复】字典类型逻辑删除时,唯一索引冲突的问题

This commit is contained in:
YunaiV
2022-12-29 12:52:37 +08:00
parent 2c3aaa8d7e
commit 5a4cc55917
4 changed files with 12 additions and 8 deletions

View File

@ -111,6 +111,7 @@ CREATE TABLE IF NOT EXISTS "system_dict_type" (
"updater" varchar(64) DEFAULT '',
"update_time" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
"deleted" bit NOT NULL DEFAULT FALSE,
"deleted_time" timestamp NOT NULL,
PRIMARY KEY ("id")
) COMMENT '字典类型表';