MCPcopy Index your code
hub / github.com/MongoEngine/mongoengine / Log

Class Log

tests/document/test_instance.py:88–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86 """Ensure that capped collections work properly."""
87
88 class Log(Document):
89 date = DateTimeField(default=datetime.now)
90 meta = {"max_documents": 10, "max_size": 4096}
91
92 Log.drop_collection()
93

Calls 1

DateTimeFieldClass · 0.85