summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/model.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/model.rb')
-rw-r--r--lib/gitlab/ci/model.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/gitlab/ci/model.rb b/lib/gitlab/ci/model.rb
deleted file mode 100644
index 1625cb841b6..00000000000
--- a/lib/gitlab/ci/model.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Ci
- module Model
- def table_name_prefix
- "ci_"
- end
-
- def model_name
- @model_name ||= ActiveModel::Name.new(self, nil, self.name.demodulize)
- end
- end
- end
-end