ce8635605c
* Record deleted(by mod) status to prevent re-appear * Move to Tombstone * Add missing migration script
5 lines
138 B
Ruby
5 lines
138 B
Ruby
class AddByModeratorToTombstone < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :tombstones, :by_moderator, :boolean
|
|
end
|
|
end
|