This commit is contained in:
Wojciech Todryk 2011-07-27 20:34:30 +02:00
parent f81c1d69c5
commit 37f548ce46
89 changed files with 466 additions and 70 deletions

View file

@ -0,0 +1,9 @@
class AddColumnToFolder < ActiveRecord::Migration
def self.up
add_column :folders, :parent, :string
end
def self.down
remove_column :folders, :parent
end
end