2017-09-29 13:02:02 -04:00
|
|
|
# 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
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def up
|
2018-02-08 02:51:29 -05:00
|
|
|
say 'Fork networks will be populated in 20171205190711 - RescheduleForkNetworkCreationCaller'
|
2017-09-29 13:02:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
# nothing
|
|
|
|
end
|
|
|
|
end
|