update dependencies, fixes to support new authentication features
[websub-hub] / src / db / postgres / sql / schema / 1.1.0 / apply.sql
1 BEGIN;
2
3 ALTER TABLE authentication ADD COLUMN otp_key TEXT;
4
5 INSERT INTO _meta_schema_version (major, minor, patch) VALUES (1, 1, 0);
6
7 COMMIT;