1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-12 04:03:08 +00:00
redmine/nested_projects/db/migrate/103_build_projects_tree.rb
Jean-Philippe Lang 058e4db223 Use acts_as_nested_set instead of acts_as_tree for project hierarchy.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/work@2149 e93f8b46-1217-0410-a6f0-8f06a7374b81
2008-12-20 12:22:38 +00:00

9 lines
118 B
Ruby

class BuildProjectsTree < ActiveRecord::Migration
def self.up
Project.rebuild!
end
def self.down
end
end