gitlab-org--gitlab-foss/lib/ci/model.rb

12 lines
192 B
Ruby

module Ci
module Model
def table_name_prefix
"ci_"
end
def model_name
@model_name ||= ActiveModel::Name.new(self, nil, self.name.split("::").last)
end
end
end