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