gitlab-ce/lib/gitlab/background_migration/project_namespaces/models/project.rb

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