Commit 0488c26e authored by Yorick Peterse's avatar Yorick Peterse

Merge branch 'sh-fix-issue-58714' into 'master'

Fix migration failure when groups are missing route

Closes #58714

See merge request gitlab-org/gitlab-ce!29022
parents ac03f30c a52cbf6b
---
title: Fix migration failure when groups are missing route
merge_request: 29022
author:
type: fixed
......@@ -98,6 +98,7 @@ class GenerateMissingRoutes < ActiveRecord::Migration[4.2]
class Namespace < ActiveRecord::Base
self.table_name = 'namespaces'
self.inheritance_column = :_type_disabled
include EachBatch
include GenerateMissingRoutes::Routable
......
......@@ -8,7 +8,7 @@ describe GenerateMissingRoutes, :migration do
let(:routes) { table(:routes) }
it 'creates routes for projects without a route' do
namespace = namespaces.create!(name: 'GitLab', path: 'gitlab')
namespace = namespaces.create!(name: 'GitLab', path: 'gitlab', type: 'Group')
routes.create!(
path: 'gitlab',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment