I upgraded my Rails 5.1.6 app on Ruby 2.4 to Rails 5.2 on Ruby 2.5.1 by making a new rails 5.2 app then transferring all the app files to it.
I noticed the following changes:
- coffee script stopped working (no problem, I just changed to js)
creating new records stopped working, but editing existing records was ok. I just get the rollback error below:
2.5.1 :005 > Item.create(name: "asdf") (0.3ms) BEGIN (0.8ms) ROLLBACK ..
Is there anything in Rails 5.2 that affects new records in Active Record?