diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2011-03-24 17:42:02 +0000 |
---|---|---|
committer | Edmund von der Burg <evdb@mysociety.org> | 2011-03-24 17:42:02 +0000 |
commit | e76bad9cb401c636542ac79788a0dd26eea35a6f (patch) | |
tree | c495c6c2ac57fe20874fe0c9022532e3b40442e6 /perllib/FixMyStreet/DB/Result/Contact.pm | |
parent | 5c1343fb6d14dd8fb44b2cc626619845097b90a9 (diff) |
Store tokens correctly
Diffstat (limited to 'perllib/FixMyStreet/DB/Result/Contact.pm')
-rw-r--r-- | perllib/FixMyStreet/DB/Result/Contact.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/DB/Result/Contact.pm b/perllib/FixMyStreet/DB/Result/Contact.pm index dd5d1f579..5a993a773 100644 --- a/perllib/FixMyStreet/DB/Result/Contact.pm +++ b/perllib/FixMyStreet/DB/Result/Contact.pm @@ -8,6 +8,7 @@ use warnings; use base 'DBIx::Class::Core'; +__PACKAGE__->load_components("FilterColumn"); __PACKAGE__->table("contacts"); __PACKAGE__->add_columns( "area_id", @@ -38,7 +39,7 @@ __PACKAGE__->set_primary_key("id"); __PACKAGE__->add_unique_constraint( "contacts_area_id_category_idx", [ "area_id", "category" ] ); -# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-03-21 16:25:05 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zuvUDlmZI74jTjrSCb1RTQ +# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-03-24 17:36:08 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:u6kRlRfgwAiCqmGhj6io5A 1; |