1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00

You can now manually start/stop recording

This commit is contained in:
DanielnetoDotCom 2021-05-21 10:05:39 -03:00
parent 6a6288ab54
commit 786ea71eca
37 changed files with 723 additions and 234 deletions

View file

@ -77,11 +77,13 @@ CREATE TABLE IF NOT EXISTS `categories` (
`private` TINYINT(1) NULL DEFAULT 0,
`allow_download` TINYINT(1) NULL DEFAULT 1,
`order` INT(11) NULL DEFAULT NULL,
`suggested` TINYINT(1) NULL DEFAULT NULL,
PRIMARY KEY (`id`),
INDEX `fk_categories_users1_idx` (`users_id` ASC),
INDEX `clean_name_INDEX2` (`clean_name` ASC),
INDEX `sortcategoryOrderIndex` (`order` ASC),
INDEX `category_name_idx` (`name` ASC),
INDEX `categoriesindex9suggested` (`suggested` ASC),
FULLTEXT INDEX `index7cname` (`name`),
FULLTEXT INDEX `index8cdescr` (`description`),
UNIQUE INDEX `clean_name_UNIQUE` (`clean_name` ASC),