mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:35:48 +08:00
b380ed5282
This is a feature that used to be present in discourse-assign but is much easier to implement in core. It also allows a topic to be assigned without it claiming for review and vice versa and allows it to work with category group reviewers.
6 lines
119 B
Ruby
6 lines
119 B
Ruby
class DropClaimedById < ActiveRecord::Migration[5.2]
|
|
def up
|
|
remove_column :reviewables, :claimed_by_id
|
|
end
|
|
end
|