mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
4 lines
211 B
SQL
4 lines
211 B
SQL
ALTER TABLE `videos` ADD COLUMN `made_for_kids` TINYINT(1) NOT NULL DEFAULT 0,
|
|
ADD INDEX `index_made_for_kids` (`made_for_kids` ASC);
|
|
|
|
UPDATE configurations SET version = '14.1', modified = now() WHERE id = 1;
|