Hello. It's look like changing column type is not working at PostgreSQL. For example:
class Some < ActiveRecord::Base
field :super_field, as: :integer
auto_upgrade!
end
Works well. Then I change :integer to :text, reload app and Some class... And nothing happend. :( Is it for me only or it's a bug?
Any other changings (adding, removing columns etc.) works perfectly.