gitlab-org--gitlab-foss/lib/gitlab/ci/model.rb
Yorick Peterse 0cabb555f0
Backport Gitlab::Ci::Model from EE
This backports the EE changes to Gitlab::Ci::Model back into CE,
ensuring the code is the same for both versions.
2019-03-12 11:10:39 +01:00

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