mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-26 18:23:41 +01:00
9 lines
191 B
Ruby
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
|