Skip to content

Commit 07605af

Browse files
committed
wip ArrayField
1 parent 546554a commit 07605af

File tree

4 files changed

+1889
-2
lines changed

4 files changed

+1889
-2
lines changed

django_mongodb/fields/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1+
from .array import ArrayField
12
from .auto import ObjectIdAutoField
23
from .duration import register_duration_field
34
from .json import register_json_field
45
from .objectid import ObjectIdField
56

6-
__all__ = ["register_fields", "ObjectIdAutoField", "ObjectIdField"]
7+
__all__ = [
8+
"register_fields",
9+
"ArrayField",
10+
"ObjectIdAutoField",
11+
"ObjectIdField"
12+
]
713

814

915
def register_fields():

0 commit comments

Comments
 (0)