diff options
author | Chris Mytton <self@hecticjeff.net> | 2013-09-10 18:11:58 +0100 |
---|---|---|
committer | Chris Mytton <self@hecticjeff.net> | 2013-09-10 18:11:58 +0100 |
commit | bc3c1ab5ad24aea27999b98dfef94031097b70c2 (patch) | |
tree | 16088cf685abf812a6cd86867eed2f97f3758bf2 | |
parent | e462f67cfa42e2e39cb39dbbab93ce05280c31e1 (diff) |
[Zurich] Update DB/Result/Body.pm schema
-rw-r--r-- | perllib/FixMyStreet/DB/Result/Body.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/DB/Result/Body.pm b/perllib/FixMyStreet/DB/Result/Body.pm index b6a044b04..c2b0555fb 100644 --- a/perllib/FixMyStreet/DB/Result/Body.pm +++ b/perllib/FixMyStreet/DB/Result/Body.pm @@ -40,6 +40,8 @@ __PACKAGE__->add_columns( { data_type => "boolean", default_value => \"false", is_nullable => 0 }, "send_extended_statuses", { data_type => "boolean", default_value => \"false", is_nullable => 0 }, + "deleted", + { data_type => "boolean", default_value => \"false", is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id"); __PACKAGE__->has_many( @@ -90,8 +92,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-09-10 17:11:54 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JT0w76BWaDpjAV61WVSYHg +# Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-09-10 18:11:23 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hTOxxiiHmC8nmQK/p8dXhQ sub url { my ( $self, $c ) = @_; |