mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
6 lines
No EOL
283 B
SQL
6 lines
No EOL
283 B
SQL
ALTER TABLE `videos_statistics`
|
|
ADD COLUMN `user_agent` VARCHAR(255) NULL,
|
|
ADD COLUMN `app` VARCHAR(45) NULL,
|
|
ADD INDEX `video_statistics_ua` (`user_agent` ASC),
|
|
ADD INDEX `video_statistics_app` (`app` ASC);
|
|
UPDATE configurations SET version = '16.0', modified = now() WHERE id = 1; |