60d066f943
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1698 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
208 B
Ruby
10 lines
208 B
Ruby
class AddWikiPagesParentId < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :wiki_pages, :parent_id, :integer, :default => nil
|
|
end
|
|
|
|
def self.down
|
|
remove_column :wiki_pages, :parent_id
|
|
end
|
|
end
|