Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/package_metadata/application_record.rb')
-rw-r--r--app/models/package_metadata/application_record.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/models/package_metadata/application_record.rb b/app/models/package_metadata/application_record.rb
new file mode 100644
index 00000000000..1bf0222ada4
--- /dev/null
+++ b/app/models/package_metadata/application_record.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+module PackageMetadata
+ class ApplicationRecord < ::ApplicationRecord
+ self.abstract_class = true
+
+ def self.table_name_prefix
+ 'pm_'
+ end
+ end
+end