From b9e6121e9be0093842cb5c5d4d20b88cfd5a65af Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Mon, 27 Sep 2021 15:51:26 +0800
Subject: [PATCH] add app version

---
 sql/xc_mall.sql |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/sql/xc_mall.sql b/sql/xc_mall.sql
index 8589160..c044606 100644
--- a/sql/xc_mall.sql
+++ b/sql/xc_mall.sql
@@ -340,3 +340,14 @@
 )  COMMENT = '用户收款方式';
 alter table mall_goods_category add image varchar(500) null comment '分类图片';
 
+
+DROP TABLE IF EXISTS app_version;
+create table app_version
+(
+    id  bigint auto_increment primary key,
+    version    varchar(255) null comment '版本号',
+    content    varchar(255) null comment '更新内容',
+    createtime datetime     null comment '更新时间',
+    address    varchar(255) null comment '下载地址',
+    type       tinyint      null comment '类型:1安卓,2苹果'
+)comment '版本表';
\ No newline at end of file

--
Gitblit v1.9.1