summaryrefslogtreecommitdiff
path: root/db/migrate/20151023144219_remove_satellites.rb
blob: e73f300028ac8a2f2c47d0b9ae5e42c16e286834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'fileutils'

class RemoveSatellites < ActiveRecord::Migration
  def up
    satellites = Gitlab.config['satellites']
    return if satellites.nil?

    satellites_path = satellites['path']
    return if satellites_path.nil?

    FileUtils.rm_rf(satellites_path)
  end

  def down
    # Do nothing
  end
end