您好我有一个表格,其中有两列来自和来自类型datatime我希望将数据类型从datetime更改为date。我不知道像rails g
这样的迁移中的chagning列类型的确切命令答案 0 :(得分:8)
从命令行运行:
rails generate migration change_data_type_for_table_column
将您的迁移写为:
change_table :table do |t|
t.change :column, :type
end
答案 1 :(得分:2)
change_column(:table, :column, :date)