mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 22:18:06 +01:00
11 lines
222 B
Ruby
11 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|