charge_update_20241216.sql 465 B

123456789101112131415161718
  1. ALTER TABLE `charge`.`withdraw_log`
  2. ADD COLUMN `changed_props` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'json array' AFTER `withdraw_error`
  3. create table charge.withdraw_blacklist
  4. (
  5. id bigint auto_increment
  6. primary key,
  7. hash_key varchar(255) not null
  8. );
  9. create table charge.withdraw_whitelist
  10. (
  11. id bigint auto_increment
  12. primary key,
  13. hash_key varchar(255) not null
  14. );