Update workouts date column type

This commit is contained in:
Andrew Tomaka 2013-08-10 02:31:46 -04:00
parent 6ce043edbb
commit daf34100ec
4 changed files with 13 additions and 4 deletions

View file

@ -0,0 +1,9 @@
class ChangeTypeInWorkouts < ActiveRecord::Migration
def self.up
change_column :workouts, :date, :date
end
def self.down
change_column :workouts, :date, :datetime
end
end