debian-mirror-gitlab/app/models/packages.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
153 B
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
module Packages
2021-06-08 01:23:25 +05:30
DuplicatePackageError = Class.new(StandardError)
2020-07-28 23:09:34 +05:30
def self.table_name_prefix
'packages_'
end
end