Làm như sau:
- đổi tên cột A
- tạo cột B mới như ngày tháng
- di chuyển dữ liệu từ A sang B
- loại bỏ A
Nói cách khác
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