Universal conditional/unique constraint support for Django - makes unique constraints work with ANY database backend
Project description
Django Universal Constraints
Application-level constraint validation for Django backends that don't support conditional/unique constraints.
Problem & Solution
Some Django database backends (e.g., django-ydb-backend) lack support for conditional/unique constraints, causing migrations to fail when models define UniqueConstraint. This library provides transparent application-level validation that works with any Django backend.
Solution: Automatic constraint interception during app startup, with validation via Django's pre_save signal system.
Technical Architecture
App Startup Integration
- Constraints are discovered and converted during Django app initialization (
apps.pyready method) - Django's
UniqueConstraintandunique_togetherdefinitions are automatically converted to application-level validators (UniversalConstraint) - Original model definitions remain unchanged
Signal-Based Validation
pre_savesignal intercepts all model saves before database write- Constraint validation occurs via additional SELECT queries
- Validation respects Django's database routing system
Database Constraint Handling
All constraints are handled at the application level only. The library provides app-level validation via Django signals, while leaving the original constraint definitions in your models unchanged.
Database Backend Responsibility: How constraints are handled at the database level depends entirely on the database backend being used:
- Some backends may skip unsupported constraints during migrations (no error)
- Some backends may add supported constraints to the database schema
- Some backends may raise errors for unsupported constraint types
This is now the responsibility of the individual database backend, not this library. The library focuses purely on providing reliable application-level validation that works consistently across all backends.
Performance Characteristics
- Additional Queries: 1-2 SELECT queries per save operation for constraint validation
- Race Condition Protection: Optional
select_for_update()adds database locking overhead - Memory Overhead: Minimal (constraint metadata stored per model class)
Installation
pip install django-universal-constraints
Configuration
Required: INSTALLED_APPS
Critical: universal_constraints must be placed LAST in INSTALLED_APPS, after all applications that define models:
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
# ... your apps with models
'myapp',
'anotherapp',
# Must be last:
'universal_constraints',
]
Optional: Per-Database Settings
UNIVERSAL_CONSTRAINTS = {
'database_alias': {
'EXCLUDE_APPS': ['admin', 'auth', 'contenttypes', 'sessions'],
'RACE_CONDITION_PROTECTION': True, # Default: True
'LOG_LEVEL': 'INFO',
}
}
Usage (Simple)
After adding universal_constraints to INSTALLED_APPS and configuring your database settings, the auto-discovery system automatically runs during Django startup. No additional setup is required - your existing model constraints will be automatically converted to application-level validation.
Usage (Advanced)
Programmatic Constraint Addition
from universal_constraints.validators import add_universal_constraint
add_universal_constraint(
User,
fields=['username'],
condition=Q(is_active=True),
name='unique_active_username'
) # Adds a UniversalConstraint for the User model. If Users have is_active=True, then usernames must be unique
Multi-Database Configuration
DATABASES = {
'postgres_db': {
'ENGINE': 'django.db.backends.postgresql',
},
'ydb_database': {
'ENGINE': 'ydb_backend.backend',
}
}
UNIVERSAL_CONSTRAINTS = {
'postgres_db': {
'RACE_CONDITION_PROTECTION': False,
},
'ydb_database': {
'RACE_CONDITION_PROTECTION': True,
}
}
Race Condition Protection
When to Enable
- High Concurrency: Multiple processes/threads modifying same constraint fields
- Critical Data Integrity: When constraint violations must be prevented
How It Works
- Uses
select_for_update()to create database row locks - Prevents race conditions across different processes/transactions
- Blocks concurrent validation until transaction completes
Performance Impact
- Additional Overhead: Database locking adds latency
- Recommendation: Enable for critical constraints, disable for high-throughput scenarios
- Fallback: Gracefully degrades to non-protected validation if locking fails
UNIVERSAL_CONSTRAINTS = {
'default': {
'RACE_CONDITION_PROTECTION': True, # Enable for critical data
}
}
Implementation Limitations
Q-Object Evaluation
Supports common Django field lookups:
exact,isnull,in,gt,gte,lt,lte- Limitation: Complex lookups fall back to "assume condition applies"
- Behavior: Conservative approach prevents false negatives
Performance vs Native Constraints
- Application-level: 1-2 additional SELECT queries per save
- Database-level: Zero query overhead, handled by database engine
- Trade-off: Compatibility vs performance
Management Commands
Constraint Discovery
python manage.py discover_constraints
python manage.py discover_constraints --format=json
Supported Backends
- ✅ SQLite (
django.db.backends.sqlite3) - ✅ PostgreSQL (
django.db.backends.postgresql) - ✅ MySQL (
django.db.backends.mysql) - ✅ YDB (
django-ydb-backend) - ✅ Any Django-compatible backend
Testing (and development)
Run the test suite:
uv sync
uv run tests/runtests.py
Troubleshooting
Common Issues
- "No such table" errors: Ensure
universal_constraintsis last inINSTALLED_APPS - Constraints not validated: Check database is configured in
UNIVERSAL_CONSTRAINTS - Migration failures: May occur with backends that don't support conditional constraints
Debug Logging
LOGGING = {
'version': 1,
'handlers': {
'console': {'class': 'logging.StreamHandler'},
},
'loggers': {
'universal_constraints': {
'handlers': ['console'],
'level': 'DEBUG',
},
},
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_universal_constraints-1.1.0.tar.gz.
File metadata
- Download URL: django_universal_constraints-1.1.0.tar.gz
- Upload date:
- Size: 70.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7affce24911c4adc4933caf0295b85a7cff26f7be6f40625bf46c69510425052
|
|
| MD5 |
2a6597ad1a4d4ab5c1923a53698fb340
|
|
| BLAKE2b-256 |
8f0b978c8b975184a05694cb6e12eac2f337aba99f781753716e29ab0e22eec9
|
File details
Details for the file django_universal_constraints-1.1.0-py3-none-any.whl.
File metadata
- Download URL: django_universal_constraints-1.1.0-py3-none-any.whl
- Upload date:
- Size: 17.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ae340b93af3677d262f433298fc76a9101481cbab7e1057dbf2f9d698e929dc
|
|
| MD5 |
b6fce108f91ee3699131cad34ed7a016
|
|
| BLAKE2b-256 |
028781fbf5807eb694d988d5697429f6e6f050ab42ee4002b2954c4cd7a3555b
|