095_add_wiki_pages_parent_id.rb
9 lines
| 208 B
| text/x-ruby
|
RubyLexer
|
r1689 | 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 | ||||