Commit 7d7d9984 authored by Mayra Cabrera's avatar Mayra Cabrera

Merge branch...

Merge branch '219582-fix-ambiguous_string_concat_on_cleanup_projects_with_missing_namespace' into 'master'

Fix ambiguous string concatenation on CleanupProjectsWithMissingNamespace

See merge request gitlab-org/gitlab!33497
parents fa8e7cba 81a62d48
---
title: Fix ambiguous string concatenation on CleanupProjectsWithMissingNamespace
merge_request: 33497
author:
type: fixed
......@@ -249,8 +249,8 @@ class CleanupProjectsWithMissingNamespace < ActiveRecord::Migration[6.0]
-- Names are expected to be unique inside their namespace
-- (uniqueness validation on namespace_id, name)
-- Attach the id to the name and path to make sure that they are unique
name = name || '_' || id,
path = path || '_' || id
name = name || '_' || id::text,
path = path || '_' || id::text
SQL
end
end
......
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