diff options
Diffstat (limited to 'perllib/FixMyStreet/DB/Result/Comment.pm')
-rw-r--r-- | perllib/FixMyStreet/DB/Result/Comment.pm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/DB/Result/Comment.pm b/perllib/FixMyStreet/DB/Result/Comment.pm index 8b9d1c4d1..66216aa6e 100644 --- a/perllib/FixMyStreet/DB/Result/Comment.pm +++ b/perllib/FixMyStreet/DB/Result/Comment.pm @@ -71,6 +71,16 @@ __PACKAGE__->belongs_to( # Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-05-24 15:32:43 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:71bSUgPf3uW607g2EGl/Vw +use DateTime::TimeZone; +my $tz = DateTime::TimeZone->new( name => "local" ); + +sub created_local { + return shift->created->set_time_zone($tz); +} + +sub confirmed_local { + return shift->confirmed->set_time_zone($tz); +} # You can replace this text with custom code or comments, and it will be preserved on regeneration |