From eb24e821c41478ace295739a9cbe50face964cd4 Mon Sep 17 00:00:00 2001 From: Daniel Neto Date: Fri, 20 Jun 2025 11:34:53 -0300 Subject: [PATCH] Update .gitignore to include RemnantTV plugin and modify updateDb.v16.0.sql to remove unnecessary alterations while adding user_agent and app columns to videos_statistics table. --- .gitignore | 1 + updatedb/updateDb.v16.0.sql | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 465d5ba674..5716e69317 100644 --- a/.gitignore +++ b/.gitignore @@ -121,3 +121,4 @@ plugin/YPTSocket/AVideo-Socket/ phpunit.xml plugin/API/AVideo-NodeAPIBoost/ elephantio.log +plugin/RemnantTV/ diff --git a/updatedb/updateDb.v16.0.sql b/updatedb/updateDb.v16.0.sql index 18d5c3f524..1e1246fdf0 100644 --- a/updatedb/updateDb.v16.0.sql +++ b/updatedb/updateDb.v16.0.sql @@ -1,9 +1,3 @@ -ALTER TABLE `videos_statistics` -ADD COLUMN `rewarded` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, -ADD INDEX `videos_statistics_rewarded` (`rewarded` ASC); -UPDATE configurations SET version = '12.7', modified = now() WHERE id = 1; - - ALTER TABLE `videos_statistics` ADD COLUMN `user_agent` VARCHAR(255) NULL, ADD COLUMN `app` VARCHAR(45) NULL,