gitlab-org--gitlab-foss/db/post_migrate/20171124150326_reschedule_f...

14 lines
282 B
Ruby

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