mastodon/db/migrate/20220209175231_add_content_...

8 lines
172 B
Ruby
Raw Permalink Normal View History

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