SponsorBlockServer/databases/_upgrade_sponsorTimes_22.sql

11 lines
252 B
MySQL
Raw Normal View History

2021-07-30 08:44:37 +02:00
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;