7 lines
180 B
Ruby
7 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddProcessingToMediaAttachments < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :media_attachments, :processing, :integer
|
|
end
|
|
end
|