fd05e26618
Closes #23150
9 lines
152 B
Ruby
9 lines
152 B
Ruby
require 'gitlab/database'
|
|
|
|
module Gitlab
|
|
module Database
|
|
def self.serialized_transaction
|
|
connection.transaction { yield }
|
|
end
|
|
end
|
|
end
|