mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-10 05:27:00 +03:00
Store video info from submissions
This commit is contained in:
13
databases/_upgrade_sponsorTimes_25.sql
Normal file
13
databases/_upgrade_sponsorTimes_25.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS "videoInfo" (
|
||||
"videoID" TEXT PRIMARY KEY NOT NULL,
|
||||
"channelID" TEXT NOT NULL,
|
||||
"title" TEXT NOT NULL,
|
||||
"published" REAL NOT NULL,
|
||||
"genreUrl" REAL NOT NULL
|
||||
);
|
||||
|
||||
UPDATE "config" SET value = 25 WHERE key = 'version';
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user