Files
gitlab-foss/lib/gitlab/background_migration/project_namespaces/models/project.rb
2021-11-12 15:12:37 +00:00

17 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