Merge branch 'main' of https://gitea.ufutx.net/ufutx/migrate
This commit is contained in:
commit
9f66f2be14
@ -24,7 +24,7 @@ CREATE TABLE `ufutx_asign_signer` (
|
|||||||
`is_iframe` tinyInt(4) default 0 comment "使用IFrame框架",
|
`is_iframe` tinyInt(4) default 0 comment "使用IFrame框架",
|
||||||
`will_type` varchar(191) default NULL comment "核身模式 0:问答模式,1:播报模式",
|
`will_type` varchar(191) default NULL comment "核身模式 0:问答模式,1:播报模式",
|
||||||
`sign_mark` varchar(191) default NULL comment "业务系统传递的唯一标识",
|
`sign_mark` varchar(191) default NULL comment "业务系统传递的唯一标识",
|
||||||
`status` tinyInt(4) default 1 comment "合同状态",
|
`status` tinyInt(4) default 1 comment "签署状态",
|
||||||
`sign_finished_time` timestamp null default null comment "签约时间",
|
`sign_finished_time` timestamp null default null comment "签约时间",
|
||||||
`user_sign_url` varchar(191) NOT NULL comment "用户签约链接",
|
`user_sign_url` varchar(191) NOT NULL comment "用户签约链接",
|
||||||
`company_sign_url` varchar(191) NOT NULL comment "公司签约链接",
|
`company_sign_url` varchar(191) NOT NULL comment "公司签约链接",
|
||||||
|
2
1736306732_table_orders_add_sign_type.up.sql
Normal file
2
1736306732_table_orders_add_sign_type.up.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
ALTER TABLE `ufutx_orders`
|
||||||
|
ADD COLUMN `sign_type` tinyint(4) default null comment "合同签署方式 1:线上,2:线下" after `err_msg`
|
3
1736307820_table_asign_signer_add_company_status.up.sql
Normal file
3
1736307820_table_asign_signer_add_company_status.up.sql
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
ALTER TABLE `ufutx_asign_signer`
|
||||||
|
ADD COLUMN `company_sign_finished_time` timestamp null default null comment "公司签约时间" after `sign_finished_time`,
|
||||||
|
ADD COLUMN `company_status` tinyInt(4) default 1 comment "公司签署状态" after `sign_finished_time`
|
2
1736309090_table_asign_signer_add_order_id.up.sql
Normal file
2
1736309090_table_asign_signer_add_order_id.up.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
ALTER TABLE `ufutx_asign_signer`
|
||||||
|
ADD COLUMN `order_id` bigint(20) NOT NULL comment "订单id" after `user_id`
|
Loading…
Reference in New Issue
Block a user