Anexos aninhados

This commit is contained in:
2009-09-06 21:00:20 -03:00
11 changed files with 108 additions and 27 deletions

View File

@@ -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