diff --git a/1755669591_create_guide_scheme_change_log.up.sql b/1755669591_create_guide_scheme_change_log.up.sql new file mode 100644 index 0000000..8be7903 --- /dev/null +++ b/1755669591_create_guide_scheme_change_log.up.sql @@ -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 = '方案修改记录'; \ No newline at end of file