Added NOT NULL to twofa_status

This commit is contained in:
Ponkhy 2021-09-11 00:13:05 +02:00
parent c3c576bd13
commit 14b7688b70

View File

@ -5,6 +5,6 @@ ALTER TABLE user
ADD twofa_secret VARCHAR(64);
ALTER TABLE user
ADD twofa_status BOOLEAN default 0;
ADD twofa_status BOOLEAN default 0 NOT NULL;
COMMIT;