1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 23:26:42 +09:00
YuruToot/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