aboutsummaryrefslogtreecommitdiff
path: root/src/db/schemas/sqlite/schema.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/db/schemas/sqlite/schema.rs')
-rw-r--r--src/db/schemas/sqlite/schema.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/db/schemas/sqlite/schema.rs b/src/db/schemas/sqlite/schema.rs
index 26bf4b68..10b5313e 100644
--- a/src/db/schemas/sqlite/schema.rs
+++ b/src/db/schemas/sqlite/schema.rs
@@ -175,6 +175,15 @@ table! {
}
table! {
+ twofactor_duo_ctx (state) {
+ state -> Text,
+ user_email -> Text,
+ nonce -> Text,
+ exp -> BigInt,
+ }
+}
+
+table! {
users (uuid) {
uuid -> Text,
enabled -> Bool,