Skip to content

Commit

Permalink
EmbeddedField, ArrayField, EmbeddedNestedField, EmbeddedInternalField…
Browse files Browse the repository at this point in the history
…: documentation with latest API.
  • Loading branch information
nesdis committed Apr 15, 2020
1 parent ccf0487 commit 03c0846
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion djongo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
# * Renz Ladia
# * thestick613

__version__ = '1.3.1'
__version__ = '1.3.2'
2 changes: 2 additions & 0 deletions docs/docs/mongodb-field-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Same as the `Field` Base class

## ListField

> Note: To be depreciated soon and replaced with a `JSONField`
```python
class ListField(Field):
def __init__(self, *args, **kwargs):
Expand Down
2 changes: 2 additions & 0 deletions docs/docs/using-django-with-objectid-field.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Same as the `Field` Base class

## The List field

> Note: To be depreciated soon and replaced with a `JSONField`
`ArrayField` and `ArrayReferenceField` require all Models in the list to be of the same type. MongoDB allows the saving of arbitrary data inside it is embedded array. The `ListField` is useful in such cases. The list field cannot be represented in Django Admin though and can only be used in the python script.

### ListField
Expand Down

0 comments on commit 03c0846

Please sign in to comment.