James Carson
James Carson
On Arch I got the same issue. I downgraded - Linux Kernel to 5.10.9 - Linux Headers to the same - gcc to 10.2.0 - gcc-libs to the same -...
Basically to fix it you can add ```options[:limit] = nil if column.type.to_sym == :boolean && defined?(ActiveRecord::ConnectionAdapters::PostgreSQLAdapter) && connection.is_a?(ActiveRecord::ConnectionAdapters::P ostgreSQLAdapter)```
I can reproduce this issue. I'm using MySQL though with the mysql2 adapter. **Reproduction Steps** I created a dummy class ``` ruby class Foobar < ActiveRecord::Base field :name, as: :string...
I found the issue and I am able to get it to change the column type. I will submit a PR soon. You can ignore my puts statements prefaced with...
@Xanders, if you need this quickly you can update your Gemfile and point it to my github burnt43/mini_record until the PR is fix and accepted.
I'll correct the tests when I get a chance.
The psql and sqlite3 tests are passing, but the mysql and mysql2 ones don't fully pass. I don't really understand what about my change messed it up. Maybe some of...
@DAddYE, when I look at the output of the build from Travis CI, it seems something might be messed up with bundler on whatever server those tests run on. It...
@sleewoo, done deal