aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0001.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema_0001.sql')
-rw-r--r--db/schema_0001.sql9
1 files changed, 5 insertions, 4 deletions
diff --git a/db/schema_0001.sql b/db/schema_0001.sql
index 1c2bf4ffc..918fdcbc5 100644
--- a/db/schema_0001.sql
+++ b/db/schema_0001.sql
@@ -11,10 +11,11 @@ CREATE TABLE sessions (
-- users table
create table users (
- id serial not null primary key,
- email text not null unique,
- name text,
- password text,
+ id serial not null primary key,
+ email text not null unique,
+ name text,
+ password text,
+ is_confirmed bool not null default false
);
-- add PK to contacts table