Eerst in uw terminal:
rails g migration change_date_format_in_my_table
Vervolgens in uw migratiebestand:
Voor rails>=3,2:
class ChangeDateFormatInMyTable < ActiveRecord::Migration
def up
change_column :my_table, :my_column, :datetime
end
def down
change_column :my_table, :my_column, :date
end
end