From d8d151b88ac9cfc303ded922ebf986cc5c9967df Mon Sep 17 00:00:00 2001 From: buke <1312023945@qq.com> Date: Fri, 30 Aug 2024 10:50:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0app=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC=E7=B1=BB=E5=9E=8B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1724983184_change_table_inner_app.up.sql | 3 +++ 1724985782_change_inner_app.up.sql | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 1724983184_change_table_inner_app.up.sql create mode 100644 1724985782_change_inner_app.up.sql diff --git a/1724983184_change_table_inner_app.up.sql b/1724983184_change_table_inner_app.up.sql new file mode 100644 index 0000000..2f55178 --- /dev/null +++ b/1724983184_change_table_inner_app.up.sql @@ -0,0 +1,3 @@ +ALTER TABLE `ufutx_inner_app` +ADD COLUMN `jump_type` tinyint(4) NOT NULL DEFAULT 0 COMMENT '跳转类型 0:app内部 1:外部地址' AFTER `intro`, +MODIFY COLUMN `price` int(11) NOT NULL DEFAULT 0.00 COMMENT '价格(单位分)' AFTER `images`; \ No newline at end of file diff --git a/1724985782_change_inner_app.up.sql b/1724985782_change_inner_app.up.sql new file mode 100644 index 0000000..46528ec --- /dev/null +++ b/1724985782_change_inner_app.up.sql @@ -0,0 +1,2 @@ +ALTER TABLE `ufutx_inner_app` +ADD COLUMN `jump_url` varchar(255) NULL COMMENT '外部跳转地址' AFTER `price`; \ No newline at end of file