debian-mirror-gitlab/lib/gitlab/ci/model.rb

14 lines
230 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
module Gitlab
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
end