1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-31 21:23:59 +01:00
mastodon/db/migrate/20170924022025_ids_to_bigints2.rb

9 lines
191 B
Ruby

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