summaryrefslogtreecommitdiffstats
path: root/db/migrate/105_build_projects_tree.rb
blob: cd35373c08ed2fc50968e365d5bc279adad18f56 (plain)
1
2
3
4
5
6
7
8
class BuildProjectsTree < ActiveRecord::Migration
  def self.up
    Project.rebuild_tree!
  end

  def self.down
  end
end