mirror of https://github.com/fspc/BikeShed-1.git
Browse Source
Still need to fix the bug/issue in netzke where it renders without the timezonedenney-fix-saving-dates
Jason Denney
11 years ago
3 changed files with 21 additions and 3 deletions
@ -0,0 +1,15 @@ |
|||||
|
class AddTimezonesToLogs < ActiveRecord::Migration |
||||
|
def up |
||||
|
change_table :logs do |t| |
||||
|
t.change :start_date, :timestamptz |
||||
|
t.change :end_date, :timestamptz |
||||
|
end |
||||
|
end |
||||
|
|
||||
|
def down |
||||
|
change_table :logs do |t| |
||||
|
t.change :start_date, :timestamp |
||||
|
t.change :end_date, :timestamp |
||||
|
end |
||||
|
end |
||||
|
end |
Loading…
Reference in new issue