summaryrefslogtreecommitdiff
path: root/db/migrate/20170929131201_populate_fork_networks.rb
blob: ba4f8ef253181d96e244911304c1cbfce9b12c1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class PopulateForkNetworks < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    say 'Fork networks will be populated in 20171205190711 - RescheduleForkNetworkCreationCaller'
  end

  def down
    # nothing
  end
end