20170924022025_ids_to_bigints2.rb 191 B

123456789
  1. class IdsToBigints2 < ActiveRecord::Migration[5.1]
  2. def up
  3. change_column :statuses_tags, :tag_id, :bigint
  4. end
  5. def down
  6. change_column :statuses_tags, :tag_id, :integer
  7. end
  8. end