mirror of
https://github.com/discourse/discourse.git
synced 2026-08-05 23:04:22 +08:00
11 lines
214 B
Ruby
Vendored
11 lines
214 B
Ruby
Vendored
# 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
|