aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/activerecord.gemspec
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2016-09-22 21:22:14 +0900
committerJeremy Daer <jeremydaer@gmail.com>2017-02-26 00:23:04 -0700
commitc92757fb68f5a281be0f2ea67e369672e9c4ec6d (patch)
tree0578c7ffc24acfc43a3161dec82722cbadb51574 /activerecord/activerecord.gemspec
parent31d27d5301c79c351c69b91d64e32a64b0f2b0fb (diff)
downloadrails-c92757fb68f5a281be0f2ea67e369672e9c4ec6d.tar.gz
rails-c92757fb68f5a281be0f2ea67e369672e9c4ec6d.tar.bz2
rails-c92757fb68f5a281be0f2ea67e369672e9c4ec6d.zip
Fix `change_column` to drop default with `null: false`
Currently `change_column` cannot drop default if `null: false` is specified at the same time. This change fixes the issue. ```ruby # cannot drop default change_column "tests", "contributor", :boolean, default: nil, null: false # we need the following workaround currently change_column "tests", "contributor", :boolean, null: false change_column "tests", "contributor", :boolean, default: nil ``` Closes #26582
Diffstat (limited to 'activerecord/activerecord.gemspec')
0 files changed, 0 insertions, 0 deletions