diff options
author | Struan Donald <struan@exo.org.uk> | 2011-06-27 11:03:57 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-06-27 11:03:57 +0100 |
commit | a20fc533b0f10646814742f1348c5f9141217efa (patch) | |
tree | 742b49b1347262bd971e397f1d3d52be7c7140d7 /db | |
parent | df18e6c8b434dfd86177cf5041278fd46d6d2ea7 (diff) |
change to use from_council in users table and store the council id in
there so we can check that the problem is for the council the user is
from
Diffstat (limited to 'db')
-rw-r--r-- | db/schema_0005-add_council_user_flag.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema_0005-add_council_user_flag.sql b/db/schema_0005-add_council_user_flag.sql index d8cf1358a..1ab1579b7 100644 --- a/db/schema_0005-add_council_user_flag.sql +++ b/db/schema_0005-add_council_user_flag.sql @@ -1,6 +1,6 @@ begin; ALTER table users - ADD COLUMN from_authority boolean NOT NULL DEFAULT false; + ADD COLUMN from_council integer; commit; |