gitlab-org--gitlab-foss/lib/ci/model.rb
2015-08-25 18:42:46 -07:00

11 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