Skip to content
Snippets Groups Projects
Commit 4554b23e authored by nesdis's avatar nesdis
Browse files

Support for Django 3.0 - Test cases to protect Djongo core 1.3

parent e0a9d76f
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,34 @@ Djongo allows for checks on data fields before they are saved to the database. R
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
## Data security 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment