diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/schema_0001.sql | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/db/schema_0001.sql b/db/schema_0001.sql index 918fdcbc5..ad95f556f 100644 --- a/db/schema_0001.sql +++ b/db/schema_0001.sql @@ -14,8 +14,7 @@ create table users ( id serial not null primary key, email text not null unique, name text, - password text, - is_confirmed bool not null default false + password text not null default '' ); -- add PK to contacts table |