我在 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
我需要做什么来消除约束?