iptv/models/mysql.ddl.sql
2025-09-21 10:23:06 +08:00

28 lines
309 B
SQL

-- ./badchannels.xlsx
drop table if exists badchannels;
CREATE TABLE badchannels
(
`id` VARCHAR(32) comment 'id',
`channelid` VARCHAR(32) comment '频道id',
`errorcode` VARCHAR(10) comment '错误代码'
,primary key(id)
)
engine=innodb
default charset=utf8
comment '坏频道'
;