update depedencies, changes to support updated authentication-module
[squeep-indie-auther] / src / db / sqlite / sql / schema / 1.2.0 / apply.sql
1 BEGIN;
2
3 ALTER TABLE authentication ADD COLUMN otp_key CHECK (typeof(otp_key) IN ('text', 'null'));
4
5 -- Update schema version
6 INSERT INTO _meta_schema_version (major, minor, patch) VALUES (1, 2, 0);
7
8 COMMIT;