mastodon/db/migrate/20220209175231_add_content_...

8 lines
172 B
Ruby

# frozen_string_literal: true
class AddContentTypeToStatusEdits < ActiveRecord::Migration[6.1]
def change
add_column :status_edits, :content_type, :string
end
end