forked from CircuitVerse/CircuitVerse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.database_consistency.yml
50 lines (47 loc) · 2.15 KB
/
.database_consistency.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
DatabaseConsistencySettings:
color: true
log_level: DEBUG
# Configures database connections.
DatabaseConsistencyDatabases:
# Database connection name listed in database.yml.
secondary:
enabled: false # disables any check for +secondary+ database.
# Everything is enabled by default.
DatabaseConsistencyCheckers:
All:
enabled: true # You can disable everything until you explicitly enable it with any option below.
MissingIndexChecker: # Enables/disables the checker entirely/globally. If disabled here, nothing can enable it back.
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
MissingUniqueIndexChecker:
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
ColumnPresenceChecker:
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
NullConstraintChecker:
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
ThreeStateBooleanChecker:
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
MissingAssociationClassChecker:
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
ForeignKeyTypeChecker:
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
ForeignKeyCascadeChecker:
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
UniqueIndexChecker:
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
RedundantIndexChecker:
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
Ahoy::Event:
visit:
ForeignKeyChecker:
enabled: false
user:
ForeignKeyChecker:
enabled: false
Ahoy::Visit:
user:
ForeignKeyChecker:
enabled: false
PushSubscription:
user:
ForeignKeyChecker:
enabled: false