mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
10 lines
252 B
SQL
10 lines
252 B
SQL
BEGIN TRANSACTION;
|
|
|
|
/* Add hash field */
|
|
ALTER TABLE "sponsorTimes" ADD "userAgent" TEXT NOT NULL default '';
|
|
|
|
ALTER TABLE "archivedSponsorTimes" ADD "userAgent" TEXT NOT NULL default '';
|
|
|
|
UPDATE "config" SET value = 22 WHERE key = 'version';
|
|
|
|
COMMIT;
|