central_update_20240409.sql 364 B

1234567891011
  1. alter table pay_merchant
  2. add daily_pay_limit bigint default 0 not null after method;
  3. alter table pay_merchant
  4. add risk int default 0 not null after daily_pay_limit;
  5. alter table pay_merchant
  6. add disabled_when_limited int default 0 not null after daily_pay_limit;
  7. alter table pay_option
  8. add pay_interval int default 0 not null after pay_config_id;