Railsアプリケーションに(schema.rb内で)次のようなテーブルがあります。
create_table "users", :force => true do |t|
t.string "name", :null=>false
t.string "address", :null=>false
end
Railsマイグレーションを作成して、住所フィールドにnullを許可します。つまり、移行後のテーブルは次のようになります。
create_table "users", :force => true do |t|
t.string "name", :null=>false
t.string "address"
end
制約を削除するにはどうすればよいですか?
raise NotImplementedError, "change_column_null is not implemented"