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

17 lines
307 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 Project model
class Project < ActiveRecord::Base
include EachBatch
self.table_name = 'projects'
end
end
end
end
end