socialforge/db/migrate/105_build_projects_tree.rb

9 lines
123 B
Ruby
Raw Normal View History

2013-08-01 10:33:49 +08:00
class BuildProjectsTree < ActiveRecord::Migration
def self.up
Project.rebuild_tree!
end
def self.down
end
end