central_update_20240903.sql 581 B

123456789101112131415161718192021222324
  1. alter table event_meta_prop
  2. add project_code varchar(255) default '' not null after id;
  3. alter table event_meta_prop
  4. modify product_id varchar(255) null;
  5. alter table event_meta_info
  6. add project_code varchar(255) default '' not null after id;
  7. alter table event_meta_info
  8. modify product_id varchar(255) null;
  9. alter table project
  10. add event_table_created int default 0 not null;
  11. alter table ssid_info
  12. add tid varchar(64) null comment 'jwt id';
  13. alter table product
  14. drop column product_code_md5;
  15. alter table product
  16. drop column event_table_created;