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

  def self.down
  end
end