Update qb.sql

pull/109/head
Mr Chen 6 years ago
parent a7126f70bc
commit 6806ed3455
  1. 12
      plugins/qbittorrent/conf/qb.sql

@ -1,6 +1,6 @@
CREATE TABLE `pl_hash_list` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`name` text NOT NULL,
`info_hash` varchar(40) NOT NULL,
`length` bigint(20) NOT NULL,
`create_time` datetime NOT NULL,
@ -12,10 +12,18 @@ CREATE TABLE `pl_hash_list` (
CREATE TABLE `pl_hash_file` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`pid` bigint(20) NOT NULL,
`name` varchar(40) NOT NULL,
`name` text NOT NULL,
`m3u8` varchar(40) NOT NULL,
`length` bigint(20) NOT NULL,
`create_time` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `create_time` (`create_time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `pl_hash_queue` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`info_hash` varchar(40) NOT NULL,
`create_time` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `create_time` (`create_time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Loading…
Cancel
Save