禁止空值
要禁止表列中的 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