20170924022025_ids_to_bigints2.rb 222 B

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