Mercurial > hg > soundsoftware-site
view db/migrate/.svn/text-base/095_add_wiki_pages_parent_id.rb.svn-base @ 99:4f06dd055f19 cannam
Add en-GB locale for checkout plugin
author | Chris Cannam |
---|---|
date | Thu, 16 Dec 2010 16:04:12 +0000 |
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