|
|
|
@ -236,4 +236,29 @@ alter table statistics_customer_order add column refund_orders int(10) DEFAULT N
|
|
|
|
|
alter table statistics_customer_order add column refund_amount DECIMAL(20,2) DEFAULT NULL COMMENT '' AFTER `total`;
|
|
|
|
|
|
|
|
|
|
ALTER TABLE `financial_bd_prize_log`
|
|
|
|
|
MODIFY COLUMN `manager_id` varchar(50) NOT NULL COMMENT 'bd user id' AFTER `record_id`;
|
|
|
|
|
MODIFY COLUMN `manager_id` varchar(50) NOT NULL COMMENT 'bd user id' AFTER `record_id`;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ALTER TABLE sys_files DROP INDEX UK_sys_files;
|
|
|
|
|
|
|
|
|
|
create table sys_clients_contract(
|
|
|
|
|
id varchar(50) not null,
|
|
|
|
|
client_id int(11) not null,
|
|
|
|
|
create_time datetime not null,
|
|
|
|
|
expiry_date date not null,
|
|
|
|
|
has_sign TINYINT(1) DEFAULT 0 not null,
|
|
|
|
|
sign_channel varchar(10) not null ,
|
|
|
|
|
sign_account_id varchar(50) DEFAULT null,
|
|
|
|
|
signatory varchar(20) DEFAULT null,
|
|
|
|
|
PRIMARY key (`id`)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
insert into `royalpay_production`.`sys_configs` ( `config_key`, `config_value`) values ( 'sys_contract_info', '您与RoyalPay的合约到期');
|
|
|
|
|
insert into `royalpay_production`.`sys_configs` ( `config_key`, `config_value`) values ( 'sys_contract_waring', '您与RoyalPay的合约还有{0}到期');
|
|
|
|
|
insert into `royalpay_production`.`sys_configs` ( `config_key`, `config_value`) values ( 'sys_contract_ordinary_waring', '您与RoyalPay的合约还有{0}到期
|
|
|
|
|
请联系管理员重新签订合同');
|
|
|
|
|
insert into `royalpay_production`.`sys_configs` ( `config_key`, `config_value`) values ( 'sys_contract_ordinary_info', '您与RoyalPay的合约已经到期
|
|
|
|
|
请联系管理员重新签订合同');
|