debian-mirror-gitlab/lib/gitlab/background_migration/project_namespaces/models/project.rb
2021-12-11 22:18:48 +05:30

16 lines
307 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
module ProjectNamespaces
module Models
# isolated Project model
class Project < ActiveRecord::Base
include EachBatch
self.table_name = 'projects'
end
end
end
end
end