10 lines
175 B
Ruby
Executable file
10 lines
175 B
Ruby
Executable file
class AddColumnToFolder < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :folders, :parent, :string
|
|
end
|
|
|
|
def self.down
|
|
remove_column :folders, :parent
|
|
end
|
|
end
|