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

filter to allow users to filter movies by ratings

Now you can sort categories
This commit is contained in:
daniel 2020-01-29 18:42:54 -03:00
parent 3d1c2ed7e2
commit e68fc94853
25 changed files with 753 additions and 732 deletions

View file

@ -74,9 +74,11 @@ CREATE TABLE IF NOT EXISTS `categories` (
`users_id` INT(11) NOT NULL DEFAULT 1,
`private` TINYINT(1) NULL DEFAULT 0,
`allow_download` TINYINT(1) NULL DEFAULT 1,
`order` INT(11) 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),
UNIQUE INDEX `clean_name_UNIQUE` (`clean_name` ASC),
CONSTRAINT `fk_categories_users1`
FOREIGN KEY (`users_id`)