0cabb555f0
This backports the EE changes to Gitlab::Ci::Model back into CE, ensuring the code is the same for both versions.
15 lines
255 B
Ruby
15 lines
255 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Model
|
|
def table_name_prefix
|
|
"ci_"
|
|
end
|
|
|
|
def model_name
|
|
@model_name ||= ActiveModel::Name.new(self, nil, self.name.demodulize)
|
|
end
|
|
end
|
|
end
|
|
end
|