Skip to content
Snippets Groups Projects
Commit 6f15907d authored by nesdis's avatar nesdis
Browse files

Support for Django 3.0

parent 21a87285
Branches
Tags
No related merge requests found
...@@ -77,6 +77,34 @@ You can contribute to the source code or the documentation by creating a simple ...@@ -77,6 +77,34 @@ You can contribute to the source code or the documentation by creating a simple
Please contribute to the continued development and success of Djongo by [making a donation](https://www.patreon.com/nesdis/). Please contribute to the continued development and success of Djongo by [making a donation](https://www.patreon.com/nesdis/).
## Data validation and integrity checks
Djongo allows for checks on data fields before they are saved to the database. Running accurate integrity checks and field value validators before writing data into the database is extremely important.
### Validators
Apply validators on each of the field values before they are saved.
### Integrity checks
```python
class Entry(models.Model):
_id = models.ObjectIdField()
blog = models.EmbeddedField(
model_container=Blog,
null=True
)
```
## Rapid Prototyping
### Goodbye Migrations
## Using MongoDB fields
## Simplify complex queries
## Django Admin
## DjongoNxt ## DjongoNxt
> Features supported in DjongoNxt are not a part of the standard Djongo package. Visit the [sponsors page](https://www.patreon.com/nesdis/) for more information. > Features supported in DjongoNxt are not a part of the standard Djongo package. Visit the [sponsors page](https://www.patreon.com/nesdis/) for more information.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment