about summary refs log tree commit diff
path: root/db/migrate/20170924022025_ids_to_bigints2.rb
blob: db8ccd919ac974deaa4cde2ff9b9e1ccd4dbf679 (plain) (blame)
1
2
3
4
5
6
7
8
9
class IdsToBigints2 < ActiveRecord::Migration[5.1]
  def up
    change_column :statuses_tags, :tag_id, :bigint
  end

  def down
    change_column :statuses_tags, :tag_id, :integer
  end
end