mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
5 lines
219 B
SQL
5 lines
219 B
SQL
ALTER TABLE `playlists`
|
|
ADD COLUMN `showOnFirstPage` TINYINT(1) UNSIGNED NULL DEFAULT 0,
|
|
ADD INDEX `showonFirstpage` (`showOnFirstPage` ASC);
|
|
|
|
UPDATE configurations SET version = '12.9', modified = now() WHERE id = 1;
|