1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-04-04 05:33:22 -04:00
BikeShed-1/db/migrate/20140504154355_add_timezones_to_logs.rb
Jason Denney 517950c42c Attempting to go the proper way to fix dates
Still need to fix the bug/issue in netzke where it renders without the
timezone
2014-05-04 13:52:11 -04:00

16 lines
320 B
Ruby

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