| 1066 | name = StringField(max_length=250, required=True) |
| 1067 | |
| 1068 | class Room(Document): |
| 1069 | number = StringField(max_length=250, required=True) |
| 1070 | staffs_with_position = ListField(DictField()) |
| 1071 | |
| 1072 | Person.drop_collection() |
| 1073 | Room.drop_collection() |
nothing calls this directly
no test coverage detected