blob: f5df486e7f7737abd29f6bdf32da4358937659e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: false
class AddAttachmentsDiskDirectory < ActiveRecord::Migration[4.2]
def up
add_column :attachments, :disk_directory, :string
end
def down
remove_column :attachments, :disk_directory
end
end
|