diff options
Diffstat (limited to 'perllib/FixMyStreet/DB/Result/User.pm')
-rw-r--r-- | perllib/FixMyStreet/DB/Result/User.pm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/perllib/FixMyStreet/DB/Result/User.pm b/perllib/FixMyStreet/DB/Result/User.pm index d88de5e7d..bfc82925d 100644 --- a/perllib/FixMyStreet/DB/Result/User.pm +++ b/perllib/FixMyStreet/DB/Result/User.pm @@ -22,15 +22,12 @@ __PACKAGE__->add_columns( "name", { data_type => "text", is_nullable => 1 }, "password", - { data_type => "text", is_nullable => 1 }, - "is_confirmed", - { data_type => "boolean", default_value => \"false", is_nullable => 0 }, + { data_type => "text", default_value => "", is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id"); __PACKAGE__->add_unique_constraint( "users_email_key", ["email"] ); -# Created by DBIx::Class::Schema::Loader v0.07009 @ 2011-03-03 10:05:03 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4dpBN1I88nB1BYtHT/AfKA - +# Created by DBIx::Class::Schema::Loader v0.07009 @ 2011-03-04 11:10:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:G+Jp+96IJFF5o2zR7vi/CQ 1; |