Wykonaj następujące czynności:
- zmień nazwę kolumny A
- utwórz nową kolumnę B jako datę
- przenieś dane z A do B
- usuń A
Innymi słowy
def self.up
rename_column :contacts, :date_entered, :date_entered_string
add_column :contacts, :date_entered, :date
Contact.reset_column_information
Contact.find_each { |c| c.update_attribute(:date_entered, c.date_entered_string) }
remove_column :contacts, :date_entered_string
end