view db/migrate/.svn/text-base/095_add_wiki_pages_parent_id.rb.svn-base @ 700:c7306033ba7a feature_36

Merge from 699:bd88afe21831
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Mon, 19 Sep 2011 16:44:43 +0100
parents 513646585e45
children
line wrap: on
line source
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