From 6adeead1bec9a91346992d751a9017dc757b4bb3 Mon Sep 17 00:00:00 2001 From: Hankin Date: Mon, 24 Feb 2025 11:34:41 +0800 Subject: [PATCH] screen add start_time --- 1740366922_table_screen_info_add_start_time.up.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 1740366922_table_screen_info_add_start_time.up.sql diff --git a/1740366922_table_screen_info_add_start_time.up.sql b/1740366922_table_screen_info_add_start_time.up.sql new file mode 100644 index 0000000..5d89598 --- /dev/null +++ b/1740366922_table_screen_info_add_start_time.up.sql @@ -0,0 +1,3 @@ +ALTER TABLE `ufutx_screen_info` +ADD COLUMN `start_time` timestamp null default null comment "开始时间" AFTER `status`, +ADD COLUMN `end_time` timestamp null default null comment "结束时间" AFTER `status`; \ No newline at end of file