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