0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-01-18 02:26:56 +00:00
mastodon/db/migrate/20190819134503_add_deleted_at_to_statuses.rb

8 lines
163 B
Ruby

# frozen_string_literal: true
class AddDeletedAtToStatuses < ActiveRecord::Migration[5.2]
def change
add_column :statuses, :deleted_at, :datetime
end
end