mirror of
https://github.com/mastodon/mastodon.git
synced 2025-03-22 01:09:13 +01:00
* 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
|