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

12 lines
192 B
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00:00
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