add scheme change log

This commit is contained in:
Hankin 2025-08-20 14:24:09 +08:00
parent e50591e2f0
commit 24373cf4b2

View File

@ -0,0 +1,8 @@
CREATE TABLE `ufutx_guide_scheme_change_logs` (
`id` bigint(20) UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,
`old_scheme` json default null comment "旧方案",
`new_scheme` json not null comment "新方案",
`operate_user_id` integer not null comment "操作用户id",
`created_at` timestamp null default null,
`updated_at` timestamp null default null
) ENGINE = InnoDB COMMENT = '方案修改记录';