| 12345678910111213141516 |
- create table promotion_opt_app_group
- (
- id bigint auto_increment
- primary key,
- opt_user_id bigint not null,
- app_code_list varchar(10000) not null,
- name varchar(255) not null,
- remark varchar(255) null,
- create_time datetime not null,
- update_time datetime not null,
- status int default 0 not null
- );
- create index opt_user_id_index
- on promotion_opt_app_group (opt_user_id);
|