This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/db/migrate/20220209175231_add_content_type_to_status_edits.rb
2022-02-09 18:02:31 +01:00

6 lines
141 B
Ruby

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