From 35befe8061a4ce08dd7ed565a217e04274cd1790 Mon Sep 17 00:00:00 2001 From: Hankin Date: Thu, 2 Jan 2025 09:55:58 +0800 Subject: [PATCH] add scrren ingo --- 1735782617_create_screen_info.up.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 1735782617_create_screen_info.up.sql diff --git a/1735782617_create_screen_info.up.sql b/1735782617_create_screen_info.up.sql new file mode 100644 index 0000000..8b6a13d --- /dev/null +++ b/1735782617_create_screen_info.up.sql @@ -0,0 +1,8 @@ +CREATE TABLE `ufutx_screen_info`( + `id` bigint(20) UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT, + `title` varchar(191) NOT NULL comment "标题", + `status` tinyInt(4) default 0 comment "状态 0:禁用,1:启用", + `created_at` timestamp null default null, + `updated_at` timestamp null default null, + `deleted_at` timestamp null default null +) \ No newline at end of file