Пример #1
0
 def __init__(self, char_id):
     self.char_id = char_id
     try:
         self.attachment = MongoAttachment.objects.get(id=self.char_id)
     except DoesNotExist:
         self.attachment = MongoAttachment(id=self.char_id)
         self.attachment.prize_ids = []
         self.attachment.attachments = {}
         self.attachment.save()