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:
parent
3d1c2ed7e2
commit
e68fc94853
25 changed files with 753 additions and 732 deletions
|
@ -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`)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue