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