mastodon/db/migrate/20200306035625_add_processi...

8 lines
180 B
Ruby

# frozen_string_literal: true
class AddProcessingToMediaAttachments < ActiveRecord::Migration[5.2]
def change
add_column :media_attachments, :processing, :integer
end
end