This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from mongoengine import connect, Document, EmbeddedDocument, \ | |
ReferenceField, EmbeddedDocumentListField, StringField, ObjectIdField | |
connect() # Connect to `test` database by default | |
###### | |
# Option1: Using 2 different collections for users and tickets | |
###### | |
class User(Document): | |
name = StringField() |