अपने टर्मिनल में सबसे पहले:
rails g migration change_date_format_in_my_table
फिर अपनी माइग्रेशन फ़ाइल में:
रेल के लिए>=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