Does anyone know why folder watch isn’t showing TV categories?
attached image below
copy the command and go to settings, database and send.
Code:
DROP TABLE IF EXISTS `watch_categories`;
CREATE TABLE `watch_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` int(1) NOT NULL DEFAULT 0,
`genre_id` int(8) NOT NULL DEFAULT 0,
`genre` varchar(64) NOT NULL DEFAULT '',
`category_id` int(8) NOT NULL DEFAULT 0,
`bouquets` varchar(4096) NOT NULL DEFAULT '[]',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=latin1;
/*!40000 ALTER TABLE `watch_categories` DISABLE KEYS */;
INSERT INTO `watch_categories` VALUES ('1','1','28','Action','0',''),('2','1','12','Adventure','0',''),('3','1','16','Animation','0',''),('4','1','35','Comedy','0',''),('5','1','80','Crime','0',''),('6','1','99','Documentary','0',''),('7','1','18','Drama','0',''),('8','1','10751','Family','0',''),('9','1','14','Fantasy','0',''),('10','1','36','History','0',''),('11','1','27','Horror','0',''),('12','1','10402','Music','0',''),('13','1','9648','Mystery','0',''),('14','1','10749','Romance','0',''),('15','1','878','Science Fiction','0',''),('16','1','10770','TV Movie','0',''),('17','1','53','Thriller','0',''),('18','1','10752','War','0',''),('19','1','37','Western','0',''),('20','2','28','Action','0','[]'),('21','2','12','Adventure','0','[]'),('22','2','16','Animation','0','[]'),('23','2','35','Comedy','0','[]'),('24','2','80','Crime','0','[]'),('25','2','99','Documentary','0','[]'),('26','2','18','Drama','0','[]'),('27','2','10751','Family','0','[]'),('28','2','14','Fantasy','0','[]'),('29','2','36','History','0','[]'),('30','2','27','Horror','0','[]'),('31','2','10402','Music','0','[]'),('32','2','9648','Mystery','0','[]'),('33','2','10749','Romance','0','[]'),('34','2','878','Science Fiction','0','[]'),('35','2','10770','TV Movie','0','[]'),('36','2','53','Thriller','0','[]'),('37','2','10752','War','0','[]'),('38','2','37','Western','0','[]'),('39','1','10759','Action & Adventure','0','[]'),('40','2','10759','Action & Adventure','0','[]'),('47','1','10762','Kids','0','[]'),('48','2','10762','Kids','0','[]'),('50','1','10763','News','0','[]'),('51','2','10763','News','0','[]'),('52','1','10764','Reality','0','[]'),('53','2','10764','Reality','0','[]'),('54','1','10765','Sci-Fi & Fantasy','0','[]'),('55','2','10765','Sci-Fi & Fantasy','0','[]'),('56','1','10766','Soap','0','[]'),('57','2','10766','Soap','0','[]'),('58','1','10767','Talk','0','[]'),('59','2','10767','Talk','0','[]'),('60','1','10768','War & Politics','0','[]'),('61','2','10768','War & Politics','0','[]');
/*!40000 ALTER TABLE `watch_categories` ENABLE KEYS */;
Last edited: