summaryrefslogtreecommitdiffstats
path: root/db/migrate/105_build_projects_tree.rb
blob: 5238ab094cdd9155360d481191b65339eba936bc (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: false

class BuildProjectsTree < ActiveRecord::Migration[4.2]
  def self.up
    Project.rebuild_tree!
  end

  def self.down
  end
end