central_update_20240606.sql 618 B

123456789101112131415161718192021222324
  1. create table auth_dy_config
  2. (
  3. id int auto_increment
  4. primary key,
  5. package_name varchar(255) not null,
  6. app_platform int not null,
  7. appid varchar(255) not null,
  8. secret varchar(255) not null,
  9. status int default 0 not null
  10. );
  11. create index idx_package_platform
  12. on auth_dy_config (package_name, app_platform);
  13. alter table pay_config
  14. add dy_app_id varchar(100) null after google_secret_path;
  15. alter table pay_config
  16. add dy_token varchar(100) null after dy_app_id;
  17. alter table pay_config
  18. add dy_salt varchar(100) null after dy_token;