Merge branch 'master' of https://github.com/ajayyy/SponsorBlockServer into mute-skip

This commit is contained in:
Ajay Ramachandran
2021-07-05 13:27:25 -04:00
6 changed files with 360 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
BEGIN TRANSACTION;
/* Add hash field */
ALTER TABLE "lockCategories" ADD "hashedVideoID" TEXT NOT NULL default '';
UPDATE "lockCategories" SET "hashedVideoID" = sha256("videoID");
UPDATE "config" SET value = 18 WHERE key = 'version';
COMMIT;