diff options
author | Matthew Somerville <matthew@mysociety.org> | 2016-07-20 14:58:34 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2016-08-22 10:36:01 +0100 |
commit | bbb067ec5ddc88862be50819076bfe63c744122e (patch) | |
tree | 49a3e2fe62f45848495e41394e37c6536b4def44 /perllib/FixMyStreet/DB/Result/ResponseTemplate.pm | |
parent | f3649ee94bb80e8b33f0eea8a817760475157b3b (diff) |
Add user planned reports.
A user with the appropriate permission can add/remove reports from their
list of planned reports using a button on a report page. The list can be
viewed at /my/planned.
Diffstat (limited to 'perllib/FixMyStreet/DB/Result/ResponseTemplate.pm')
-rw-r--r-- | perllib/FixMyStreet/DB/Result/ResponseTemplate.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/DB/Result/ResponseTemplate.pm b/perllib/FixMyStreet/DB/Result/ResponseTemplate.pm index 48a1ab3ae..d189bf3ec 100644 --- a/perllib/FixMyStreet/DB/Result/ResponseTemplate.pm +++ b/perllib/FixMyStreet/DB/Result/ResponseTemplate.pm @@ -29,6 +29,7 @@ __PACKAGE__->add_columns( data_type => "timestamp", default_value => \"current_timestamp", is_nullable => 0, + original => { default_value => \"now()" }, }, ); __PACKAGE__->set_primary_key("id"); @@ -41,8 +42,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07035 @ 2015-02-19 16:13:43 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xzhmxtu0taAnBMZN0HBocw +# Created by DBIx::Class::Schema::Loader v0.07035 @ 2016-07-20 14:38:36 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ECFQLMxOFGwv7cwfHLlszw # You can replace this text with custom code or comments, and it will be preserved on regeneration |