mastodon/db/migrate/20220209175231_add_content_...

8 lines
172 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2022-02-09 10:59:43 -06:00
class AddContentTypeToStatusEdits < ActiveRecord::Migration[6.1]
def change
add_column :status_edits, :content_type, :string
end
end