增加对公转账订单类型

This commit is contained in:
Hankin 2024-08-02 14:25:40 +08:00
parent 7431d4a5be
commit 9ca396657d
8 changed files with 2 additions and 14 deletions

View File

@ -1 +0,0 @@
drop table if EXISTS ufutx_test;

View File

@ -1,5 +0,0 @@
create table if not EXISTS ufutx_test (
id int(10) unsigned not null auto_increment,
name varchar(100) not null comment "姓名",
primary key(id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

View File

@ -1 +0,0 @@
alter table ufutx_test drop column gender

View File

@ -1 +0,0 @@
alter table ufutx_test add column gender tinyint default 1 comment "性别"

View File

@ -1,5 +0,0 @@
create table if not EXISTS ufutx_test (
id int(10) unsigned not null auto_increment,
name varchar(100) not null comment "姓名",
primary key(id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

View File

@ -1 +0,0 @@
drop table if EXISTS ufutx_test;

View File

@ -0,0 +1 @@
alter table `ufutx_s2_shop_sku` add COLUMN `pay_c2c` tinyint default 0 comment "是否支持对公转账,0:不支持,1:支持" AFTER `status`

View File

@ -0,0 +1 @@
alter table `ufutx_s2_shop_order` add COLUMN `pay_type` tinyint default 1 comment "支付类型,1:微信支付,2:对公转账" AFTER `status`