mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-06 15:05:07 +00:00
![Jeong Arm](/assets/img/avatar_default.png)
* Record deleted(by mod) status to prevent re-appear * Move to Tombstone * Add missing migration script
6 lines
138 B
Ruby
6 lines
138 B
Ruby
class AddByModeratorToTombstone < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :tombstones, :by_moderator, :boolean
|
|
end
|
|
end
|