aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorEdmund von der Burg <evdb@mysociety.org>2011-03-02 12:30:43 +0000
committerEdmund von der Burg <evdb@mysociety.org>2011-03-02 12:30:43 +0000
commitc5a4a6e496f4aebd496336c44a61c0b1c64dfccd (patch)
tree818493f83d1a7f36a885ae3b0ac260bd55eead5d /db
parentabf30bbf21ae1a51005bc81456ebd3e89fe98048 (diff)
Passwords can be null
Diffstat (limited to 'db')
-rw-r--r--db/schema_0001.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema_0001.sql b/db/schema_0001.sql
index 88bed06c6..1c2bf4ffc 100644
--- a/db/schema_0001.sql
+++ b/db/schema_0001.sql
@@ -14,7 +14,7 @@ create table users (
id serial not null primary key,
email text not null unique,
name text,
- password text not null
+ password text,
);
-- add PK to contacts table