2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-10-03 17:21:20 +08:00
discourse/db/migrate/20190508141824_drop_claimed_by_id.rb

11 lines
214 B
Ruby

# frozen_string_literal: true
class DropClaimedById < ActiveRecord::Migration[5.2]
def up
remove_column :reviewables, :claimed_by_id
end
def down
raise ActiveRecord::IrreversibleMigration
end
end