Trying to create a table with a bigint column creates a standard integer column instead. What could be going wrong? I don\'t know where to start looking.
I\'m using
Rails 5.0.0.1 it works:
def change create_table :huge do |t| t.integer :big_bastard, limit: 8 end end