summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/model.rb
blob: 3994a50772ba9119d63ae55a8d634ae6028c8d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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