1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
name: main
description: Main GitLab database holding all projects, issues, etc.
gitlab_schemas:
- gitlab_internal
- gitlab_shared
- gitlab_main
- gitlab_main_cell
- gitlab_pm
- gitlab_main_clusterwide
lock_gitlab_schemas:
- gitlab_ci
- gitlab_sec
# Note that we use ActiveRecord::Base here and not ApplicationRecord.
# This is deliberate, as:
# - the load balancer must be enabled for _all_ models
# - other models outside of Rails that are using `ActiveRecord::Base`
# needs to use `main:`
klass: ActiveRecord::Base
uses_load_balancing: true
|