Commit 01185be0 authored by Jasper Maes's avatar Jasper Maes

Fix deprecation: insert_sql is deprecated and will be removed

parent bf38936f
---
title: 'Fix deprecation: insert_sql is deprecated and will be removed'
merge_request: 23944
author: Jasper Maes
type: other
......@@ -46,7 +46,7 @@ class CreateMissingNamespaceForInternalUsers < ActiveRecord::Migration[4.2]
end
insert_query = "INSERT INTO namespaces(owner_id, path, name, created_at, updated_at) VALUES(#{user_id}, '#{path}', '#{path}', NOW(), NOW())"
namespace_id = connection.insert_sql(insert_query)
namespace_id = connection.insert(insert_query)
create_route(namespace_id)
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