mastodon/db/migrate/20190512200918_add_content_...

8 lines
165 B
Ruby

# frozen_string_literal: true
class AddContentTypeToStatuses < ActiveRecord::Migration[5.2]
def change
add_column :statuses, :content_type, :string
end
end