diff --git a/db/migrate/036_folders.rb b/db/migrate/036_folders.rb new file mode 100644 index 0000000..2a21a40 --- /dev/null +++ b/db/migrate/036_folders.rb @@ -0,0 +1,9 @@ +class Folders < ActiveRecord::Migration + def self.up + add_column :attachments, :path, :string + end + + def self.down + remove_column :attachments, :path + end +end