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

showonFirstpage update

This commit is contained in:
Daniel Neto 2023-08-10 14:39:00 -03:00
parent 7ac7481d5b
commit a6ac9edca0
12 changed files with 262 additions and 98 deletions

View file

@ -501,10 +501,12 @@ CREATE TABLE IF NOT EXISTS `playlists` (
`modified` DATETIME NULL DEFAULT NULL,
`users_id` INT(11) NOT NULL,
`status` ENUM('public', 'private', 'unlisted', 'favorite', 'watch_later') NOT NULL DEFAULT 'public',
`showOnTV` TINYINT NULL,
`showOnTV` TINYINT NULL,,
`showOnFirstPage` TINYINT(1) UNSIGNED NULL DEFAULT 0,
PRIMARY KEY (`id`),
INDEX `fk_playlists_users1_idx` (`users_id` ASC),
INDEX `showOnTVindex3` (`showOnTV` ASC),
INDEX `showonFirstpage` (`showOnFirstPage` ASC),
CONSTRAINT `fk_playlists_users1`
FOREIGN KEY (`users_id`)
REFERENCES `users` (`id`)