playlet_update_20241212.sql 226 B

123456789
  1. create table playlet.withdraw_whitelist
  2. (
  3. id bigint auto_increment
  4. primary key,
  5. hash_key varchar(255) not null
  6. );
  7. alter table playlet.user_info
  8. add ab_test_group varchar(64) null after head_img_url;