about summary refs log tree commit diff
path: root/db/migrate/20181127130500_identity_id_to_bigint.rb
AgeCommit message (Collapse)Author
2018-11-27Change identities id column to a bigint (#9371)Eugen Rochko
* fix: change Identity's id column to a bigint This appears to be the last model created using a 5.0 migration, where column types defaulted to `integer` rather than `bigint`. This migration changes the column type to match that of all of the other ID columns. * Change user_id column in identities to bigint and fix down-migration