aboutsummaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
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);