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

Add a description for the site. it will improve metatags

This commit is contained in:
Daniel Neto 2023-10-10 16:12:10 -03:00
parent 0ef5a7159e
commit 8eee1d4965
2 changed files with 4 additions and 0 deletions

View file

@ -330,6 +330,7 @@ CREATE TABLE IF NOT EXISTS `configurations` (
`smtpPassword` VARCHAR(255) NULL,
`smtpPort` INT NULL,
`encoderURL` VARCHAR(255) NULL,
`description` TEXT NULL,
PRIMARY KEY (`id`),
INDEX `fk_configurations_users1_idx` (`users_id` ASC),
CONSTRAINT `fk_configurations_users1`

View file

@ -0,0 +1,3 @@
ALTER TABLE `configurations` ADD COLUMN `description` TEXT NULL;
UPDATE configurations SET version = '14.0', modified = now() WHERE id = 1;