mirror of
https://github.com/whippyshou/mastodon
synced 2024-12-06 02:38:57 +09:00
6 lines
132 B
Ruby
6 lines
132 B
Ruby
|
class AddDeletedAtToStatuses < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :statuses, :deleted_at, :datetime
|
||
|
end
|
||
|
end
|