Mysql
 sql >> Database >  >> RDS >> Mysql

Modificare un tipo di colonna da Date a DateTime durante la migrazione ROR

Primo nel tuo terminale:

rails g migration change_date_format_in_my_table

Quindi nel tuo file di migrazione:

Per le rotaie>=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