1
0
mirror of https://framagit.org/tykayn/mastodon.git synced 2023-08-25 08:33:12 +02:00
mastodon/db/migrate/20190509164208_add_by_moderator_to_tombstone.rb
Jeong Arm ce8635605c Record deleted(by mod) status to prevent re-appear ()
* Record deleted(by mod) status to prevent re-appear

* Move to Tombstone

* Add missing migration script
2019-05-09 22:03:02 +02:00

6 lines
138 B
Ruby

class AddByModeratorToTombstone < ActiveRecord::Migration[5.2]
def change
add_column :tombstones, :by_moderator, :boolean
end
end