Skip to content

Commit

Permalink
Update setup.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
asilvafx authored Nov 15, 2024
1 parent c3207f2 commit bbb4ba4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/data/db/setup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,19 @@ CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
user_id TEXT,
displayName TEXT,
phone TEXT,
email TEXT,
bio TEXT,
crypt TEXT,
confirmed INTEGER DEFAULT 0,
nonce TEXT,
role INTEGER DEFAULT 0,
ip_address TEXT,
last_online TEXT,
login_alerts INTEGER DEFAULT 0,
twofactor INTEGER DEFAULT 0,
passkey INTEGER DEFAULT 0,
pin INTEGER DEFAULT 0,
last_online TEXT,
login_count INTEGER DEFAULT 0,
is_admin INTEGER DEFAULT 0,
created_at TIMESTAMP,
Expand Down

0 comments on commit bbb4ba4

Please sign in to comment.