1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/updatedb/updateDb.v14.6.sql
2025-03-06 08:46:43 -03:00

8 lines
283 B
SQL

ALTER TABLE `comments`
ADD COLUMN `chat_messages_id` INT(11) NULL DEFAULT NULL;
ALTER TABLE `comments`
ADD INDEX `chat_messages_comments` (`chat_messages_id`);
-- Update the version in configurations table
UPDATE configurations SET version = '14.6', modified = now() WHERE id = 1;