django-partial-index
django-partial-index copied to clipboard
PostgreSQL and SQLite partial index support for Django
Following Django 3.0 [release notes](https://docs.djangoproject.com/en/3.0/releases/3.0/), I dropped support for Django < 2.2
this library is in maintenance mode. so you need to move away if you want to upgrade to django 3.0 I am in the midst of doing so. here's how...
This has several improvements to how validation errors are raised by the mixin: - Use the Django built-in validation error generation to produce better errors: - The name of the...
The database will allow it, but the validator incorrectly rejects NULL values on nullable fields which are part of the unique index. This patch fixes that so the form validations...
Hi, Is it possible to have the verbose name for each field (and for object) when validationError raised ? It will be more user friendly ? When a validationError raised...
If you use multi-table inheritance then `validate_partial_unique()` doesn't work if `Meta` is overridden by the child; any uniqueness constraints on the parent model will be ignored even though they are...
I noticed this project isn't officially supporting Django 2.1, this aims at adding it. - [x] Add Django 2.1 to Travis - [ ] Fix any [problems](https://travis-ci.org/mattiaslinnap/django-partial-index/builds/499171221) - [ ]...
Hi there, can you elaborate more on this future plan? `Add a validation mixin for DRF Serializers` By the way, this is a great plugin. Thanks. Adding it to my...
For huge table when you create/drop index on live table for postgres, index creation lock table and for live you can just lock all enable connections and go to downtime...