chore: 系统配置表的逻辑删除字段默认0

This commit is contained in:
ray
2024-11-17 17:34:04 +08:00
parent 2c42e47ae0
commit be5bc74f6a
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ CREATE TABLE `sys_config` (
`create_by` bigint NOT NULL COMMENT '创建人ID',
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
`update_by` bigint DEFAULT NULL COMMENT '更新人ID',
`is_deleted` tinyint(1) NOT NULL COMMENT '逻辑删除标识(0-未删除 1-已删除)',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT '逻辑删除标识(0-未删除 1-已删除)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT='系统配置';