gab-social/db/migrate/20170924022025_ids_to_bigin...

10 lines
191 B
Ruby
Raw Normal View History

2019-07-02 08:10:25 +01:00
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