diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-17 10:26:34 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-17 10:26:34 +0100 |
commit | 79dcf16ec6d229d6c31e055ed8e6a98327526a3a (patch) | |
tree | bf7fd3c5e8de1d0bf3c519d421472a656570a2b7 /lib/mauve/history.rb | |
parent | f1608b8098d0302f7e5c0e7989c78fa310d7d424 (diff) |
Changed DateTime to Time everywhere. Much better.
Diffstat (limited to 'lib/mauve/history.rb')
-rw-r--r-- | lib/mauve/history.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mauve/history.rb b/lib/mauve/history.rb index 086fc6d..096e648 100644 --- a/lib/mauve/history.rb +++ b/lib/mauve/history.rb @@ -23,7 +23,7 @@ module Mauve # property :alert_id, String, :required => true property :type, String, :required => true, :default => "unknown" property :event, Text, :required => true, :default => "Nothing set" - property :created_at, DateTime, :required => true + property :created_at, Time, :required => true has n, :alerts, :through => :alerthistory |