summaryrefslogtreecommitdiff
path: root/db/post_migrate/20171124150326_reschedule_fork_network_creation.rb
blob: 8e320ea9e8d91fa41e4b5127f3e487892e26e4ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class RescheduleForkNetworkCreation < 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