Support schema upgrading with postgres

This commit is contained in:
Ajay Ramachandran
2021-03-01 22:20:44 -05:00
parent 46b42da5bd
commit 88855ab695
3 changed files with 50 additions and 1 deletions

View File

@@ -33,4 +33,7 @@ CREATE TABLE IF NOT EXISTS "config" (
CREATE INDEX IF NOT EXISTS sponsorTimes_videoID on sponsorTimes(videoID);
CREATE INDEX IF NOT EXISTS sponsorTimes_UUID on sponsorTimes(UUID);
CREATE EXTENSION IF NOT EXISTS pgcrypto; --!sqlite-ignore
COMMIT;