| 123456789101112131415161718 |
- ALTER TABLE `charge`.`withdraw_log`
- ADD COLUMN `changed_props` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'json array' AFTER `withdraw_error`
- create table charge.withdraw_blacklist
- (
- id bigint auto_increment
- primary key,
- hash_key varchar(255) not null
- );
- create table charge.withdraw_whitelist
- (
- id bigint auto_increment
- primary key,
- hash_key varchar(255) not null
- );
|