From b78098ab698395f5d099eaf7ec96f7cd4ce82292 Mon Sep 17 00:00:00 2001 From: buke <1312023945@qq.com> Date: Wed, 28 Aug 2024 15:21:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0app=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1724829100_create_table_innerapp.up.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 1724829100_create_table_innerapp.up.sql diff --git a/1724829100_create_table_innerapp.up.sql b/1724829100_create_table_innerapp.up.sql new file mode 100644 index 0000000..5aeea59 --- /dev/null +++ b/1724829100_create_table_innerapp.up.sql @@ -0,0 +1,15 @@ +CREATE TABLE `ufutx_inner_app` +( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `unique_id` varchar(128) NOT NULL COMMENT '唯一标识, app内用来区分用, 不可修改', + `title` varchar(128) NOT NULL COMMENT '内嵌应用显示名字', + `icon` varchar(512) NOT NULL COMMENT '图标url', + `slogan` varchar(128) NOT NULL COMMENT '一句话简介', + `intro` text NOT NULL COMMENT '详情介绍', + `images` text COMMENT '预览图(多个)', + `price` decimal(10, 2) NOT NULL DEFAULT '0.00' COMMENT '价格', + `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态 0:关闭 1:开启', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='App内嵌应用'; \ No newline at end of file