diff options
author | Struan Donald <struan@exo.org.uk> | 2011-06-22 17:42:02 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-06-22 17:42:02 +0100 |
commit | fbabbc2c6fa978ee1476b5c559d6b7af0fe7760e (patch) | |
tree | 532b6d2b67cf7d2e74281abbea86d6293740a5db | |
parent | 4d646d87ad5a603d046c6c3e23e9688bf058ebcc (diff) |
add from_authority flag to users table for council employees etc
-rw-r--r-- | db/schema.sql | 1 | ||||
-rw-r--r-- | db/schema_0005-add_council_user_flag.sql | 6 | ||||
-rw-r--r-- | perllib/FixMyStreet/DB/Result/User.pm | 6 |
3 files changed, 11 insertions, 2 deletions
diff --git a/db/schema.sql b/db/schema.sql index bb720077b..984ceb690 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -131,6 +131,7 @@ create table users ( name text, phone text, password text not null default '' + from_authority boolean not null default false -- users is from a council etc ); -- Problems reported by users of site diff --git a/db/schema_0005-add_council_user_flag.sql b/db/schema_0005-add_council_user_flag.sql new file mode 100644 index 000000000..d8cf1358a --- /dev/null +++ b/db/schema_0005-add_council_user_flag.sql @@ -0,0 +1,6 @@ +begin; + +ALTER table users + ADD COLUMN from_authority boolean NOT NULL DEFAULT false; + +commit; diff --git a/perllib/FixMyStreet/DB/Result/User.pm b/perllib/FixMyStreet/DB/Result/User.pm index 30314ffa3..cdac54280 100644 --- a/perllib/FixMyStreet/DB/Result/User.pm +++ b/perllib/FixMyStreet/DB/Result/User.pm @@ -26,6 +26,8 @@ __PACKAGE__->add_columns( { data_type => "text", is_nullable => 1 }, "password", { data_type => "text", default_value => "", is_nullable => 0 }, + "from_authority", + { data_type => "boolean", default_value => \"false", is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id"); __PACKAGE__->add_unique_constraint("users_email_key", ["email"]); @@ -49,8 +51,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-05-24 15:32:43 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Vo92xIsCQTLF6lBugzhHcA +# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-06-22 16:10:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zQIniwAXjl5Lh9wyiGuwFw use mySociety::EmailUtil; |