aboutsummaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--schema.sql1
1 files changed, 0 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 6317819..aa5e38e 100644
--- a/schema.sql
+++ b/schema.sql
@@ -47,7 +47,6 @@ CREATE TABLE emails (
CREATE TABLE users (
id INTEGER GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
username TEXT NOT NULL UNIQUE,
- password_algorithm TEXT NOT NULL CHECK (password_algorithm in ('argon2id')),
password TEXT NOT NULL
);