1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[compute|brightbox] Reset times to the correct type so not string attributes

This commit is contained in:
Paul Thornthwaite 2011-08-26 16:00:24 +01:00
parent dba30fba4b
commit 440bbc30f5
4 changed files with 9 additions and 9 deletions

View file

@ -40,8 +40,8 @@ module Fog
attribute :telephone_verified
# Times
attribute :created_at
attribute :verified_at
attribute :created_at, :type => :time
attribute :verified_at, :type => :time
# Links - to be replaced
attribute :owner_id, :aliases => "owner", :squash => "id"

View file

@ -26,7 +26,7 @@ module Fog
attribute :compatibility_mode
# Times
attribute :created_at
attribute :created_at, :type => :time
# Links - to be replaced
attribute :ancestor_id, :aliases => "ancestor", :squash => "id"

View file

@ -19,8 +19,8 @@ module Fog
attribute :listeners
# Times
attribute :created_at
attribute :deleted_at
attribute :created_at, :type => :time
attribute :deleted_at, :type => :time
# Links - to be replaced
attribute :account

View file

@ -19,10 +19,10 @@ module Fog
attribute :console_token
# Times
attribute :created_at
attribute :started_at
attribute :console_token_expires
attribute :deleted_at
attribute :created_at, :type => :time
attribute :started_at, :type => :time
attribute :console_token_expires, :type => :time
attribute :deleted_at, :type => :time
# Links - to be replaced
attribute :account_id, :aliases => "account", :squash => "id"