增加对公转账订单类型
This commit is contained in:
parent
7431d4a5be
commit
9ca396657d
@ -1 +0,0 @@
|
|||||||
drop table if EXISTS ufutx_test;
|
|
@ -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;
|
|
@ -1 +0,0 @@
|
|||||||
alter table ufutx_test drop column gender
|
|
@ -1 +0,0 @@
|
|||||||
alter table ufutx_test add column gender tinyint default 1 comment "性别"
|
|
@ -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;
|
|
@ -1 +0,0 @@
|
|||||||
drop table if EXISTS ufutx_test;
|
|
1
1722579359_table_ufutx_s2_shop_sku_add_pay_c2c.up.sql
Normal file
1
1722579359_table_ufutx_s2_shop_sku_add_pay_c2c.up.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
alter table `ufutx_s2_shop_sku` add COLUMN `pay_c2c` tinyint default 0 comment "是否支持对公转账,0:不支持,1:支持" AFTER `status`
|
1
1722579383_table_ufutx_s2_shop_order_add_pay_type.up.sql
Normal file
1
1722579383_table_ufutx_s2_shop_order_add_pay_type.up.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
alter table `ufutx_s2_shop_order` add COLUMN `pay_type` tinyint default 1 comment "支付类型,1:微信支付,2:对公转账" AFTER `status`
|
Loading…
Reference in New Issue
Block a user