When working with 2 different models, it seems like mongox is ignoring the collection name and inserting into the first one's collection.
Currently, I have 2 models defined in 2 different files:
class UserAction(mongox.Model, db=db, collection="user_actions"):
server_id: int
name: str
aliases: list[str]
emoji: str
self_text: str
receivers_text: list[str]
class ServerSetting(mongox.Model, db=db, collection="server_settings"):
server_id: int
ignored_channels: list[int]
Firstly, I insert into server_settings
, but when I try to insert into user_actions
, the object gets created inside the server_settings
collection instead.
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too