如何使用rake
中的rails
任务生成迁移以在现有模型中添加列?
应使用rake
任务
class AddNameToCustomer < ActiveRecord::Mirgation
def change
add_column :customer, :name, :string
end
end
答案 0 :(得分:1)
namespace :dummy do
task test: :environment do
`rails generate migration AddNameToCustomers name:string`
sleep 2
`rake db:migrate`
end
end