禁止空值
要禁止表列中的 null 值,请将:null 参数添加到迁移中,如下所示:
class AddPriceToProducts < ActiveRecord::Migration
def change
add_column :products, :float, null: false
end
end
要禁止表列中的 null 值,请将:null 参数添加到迁移中,如下所示:
class AddPriceToProducts < ActiveRecord::Migration
def change
add_column :products, :float, null: false
end
end