I'm trying to get a column in my database to use bigint as the type.
I have tried several combinations already including these with no luck:
add_column :my_table, :my_field, :bigint
add_column :my_table, :my_field, :bigint, limit: 8
add_column :my_table, :my_field, :integer, limit: 8
I think part of the issue is that this is not just a Rails migration for a DB column to be bigint, but it also needs to work with PostGres.