From ffcbfda9232da7f76071f6ba781633f7a6e1e284 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Tue, 28 Sep 2021 14:38:25 +0800
Subject: [PATCH] add bindphone

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

diff --git a/sql/xc_mall.sql b/sql/xc_mall.sql
index e0215ce..fd9ee91 100644
--- a/sql/xc_mall.sql
+++ b/sql/xc_mall.sql
@@ -338,3 +338,21 @@
     bank VARCHAR(255)    COMMENT '开户行' ,
     PRIMARY KEY (ID)
 )  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 '版本表';
+
+alter table mall_order_info add pay_trade_no text null comment '支付交易单号';
+alter table mall_member add bind_phone varchar(20) null comment '绑定手机号(仅全民商城用得到)';
+
+

--
Gitblit v1.9.1