1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| create table collection ( id bigint auto_increment primary key, name varchar(191) default '' not null comment '名称', data_method bigint default 1 not null comment '数据类型:1JSON 2XML', data_type bigint default 1 not null comment '数据类型:1视频 2影人', address varchar(191) default '' not null comment '地址', param varchar(191) default '' not null comment '参数', `desc` text null comment '说明', charging_mode bigint default 1 not null comment '收费模式 1免费 2vip免费 3金币点播', data_handle bigint default 1 not null comment '数据操作 1新增+更新 2新增 3更新', log_id bigint default 0 not null comment '请求日志id', sr_id bigint default 0 null comment '超管平台资源id', status bigint default 1 null comment 'COMMENT', create_at bigint not null, update_at bigint not null, match_player tinyint(1) null comment '是否匹配资源播放器', use_parse int default 0 not null comment '是否启用解析,1-是,2-否', parse_address varchar(191) default '' not null comment '解析地址,视频播放地址', tags text null comment '来源', color text null, bold int default 0 not null, sort int default 99 not null ) collate = utf8mb4_unicode_ci;
|