我想在我的“订单”表中
添加一个名为“payment_type”的列.
这是我到目前为止的迁移:
def change
add_column :orders,:payment_type,:string
end
我想要这个payment_type保存当前在DB中的所有记录的值“normal”.但是,不是为了将来的记录.我想为未来的记录没有默认值.我该怎么做?
当您只想为所有现有记录设置值时,您可以使用update_all,这比循环遍历所有的顺序实例要快得多,因为它仅使用
数据库语句,并且不会实现所有订单:
def up
add_column :orders,:string
Order.reset_column_information
Order.update_all(payment_type: 'normal')
end
def down
remove_column :orders,:payment_type
end
update_all不调用任何验证或触发器.
原文链接:https://www.f2er.com/ruby/272022.html