debian-mirror-gitlab/lib/gitlab/background_migration/project_namespaces/models/namespace.rb

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

18 lines
365 B
Ruby
Raw Normal View History

2021-12-11 22:18:48 +05:30
# frozen_string_literal: true
module Gitlab
module BackgroundMigration
module ProjectNamespaces
module Models
# isolated Namespace model
class Namespace < ActiveRecord::Base
include EachBatch
self.table_name = 'namespaces'
self.inheritance_column = :_type_disabled
end
end
end
end
end