aboutsummaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2020-06-20 21:14:26 +0200
committerTom Smeding <tom.smeding@gmail.com>2020-06-20 21:14:41 +0200
commit2675fac7fe07783d3266b59f6e1c0e0a337a84db (patch)
tree4e73285bc4972f0aeccb772ae512b2901f10bee1 /schema.sql
parentf45959b53b8322a852554aa8dd7f8c9f4f99b5b4 (diff)
server: User password hashing (libsodium Argon2id(3,64MB))
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 3efe0f1..06baafd 100644
--- a/schema.sql
+++ b/schema.sql
@@ -21,7 +21,7 @@ create table Members (
create table Users (
id integer primary key not null,
name text not null,
- pass text not null
+ passhash text not null
);
create unique index users_name_index on Users(name);