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

12 lines
192 B
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04: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