From a1882b67c41fe9901a0cd8059b5cc78a5beadec0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 26 Nov 2024 09:28:28 +0100 Subject: Adding upstream version 2.0.0~beta.0+dfsg. Signed-off-by: Daniel Baumann --- db/old_migrations/patch-2fa.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 db/old_migrations/patch-2fa.sql (limited to 'db/old_migrations/patch-2fa.sql') diff --git a/db/old_migrations/patch-2fa.sql b/db/old_migrations/patch-2fa.sql new file mode 100644 index 0000000..35069d8 --- /dev/null +++ b/db/old_migrations/patch-2fa.sql @@ -0,0 +1,10 @@ +-- You should not modify if this have pushed to Github, unless it does serious wrong with the db. +BEGIN TRANSACTION; + +ALTER TABLE user + ADD twofa_secret VARCHAR(64); + +ALTER TABLE user + ADD twofa_status BOOLEAN default 0 NOT NULL; + +COMMIT; -- cgit v1.2.3