最佳答案
我在 Rails 应用程序中有一个表,它(在 schema.rb 中)看起来像:
create_table "users", :force => true do |t|
t.string "name", :null=>false
t.string "address", :null=>false
end
我想编写一个 Rails 迁移,以允许地址字段为空。也就是说,在迁移之后,表看起来像这样:
create_table "users", :force => true do |t|
t.string "name", :null=>false
t.string "address"
end
我需要做什么来移除约束?