central_update_20241104.sql 404 B

12345678910111213
  1. create table promotion_attributed_count
  2. (
  3. id varchar(255) not null
  4. primary key,
  5. advertiser_id varchar(255) not null,
  6. app_code varchar(255) not null,
  7. count bigint default 0 not null,
  8. constraint advertiser_app_unique
  9. unique (advertiser_id, app_code)
  10. );
  11. create index advertiser_index
  12. on promotion_attributed_count (advertiser_id);