1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-28 06:48:38 +09:00
whippy-edition/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