mirror of
https://github.com/redmine/redmine.git
synced 2025-10-30 09:56:20 +01:00
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
|