Files
François Voron 0a0dcadfdc Use real UUID for User id. and OAuthAccount id. (#198)
* Use UUID for user id and oauth account id

* Update documentation for UUID

* Tweak GUID definition of SQLAlchemy to match Tortoise ORM one

* Write migration doc
2020-05-21 16:40:33 +02:00

1.5 KiB

MongoDB

FastAPI Users provides the necessary tools to work with MongoDB databases thanks to mongodb/motor package for full async support.

Setup database connection and collection

Let's create a MongoDB connection and instantiate a collection.

{!./src/db_mongodb.py!}

You can choose any name for the database and the collection.

!!! warning You may have noticed the uuidRepresentation parameter. It controls how the UUID values will be encoded in the database. By default, it's set to pythonLegacy but new applications should consider setting this to standard for cross language compatibility. Read more about this.

Create the database adapter

The database adapter of FastAPI Users makes the link between your database configuration and the users logic. Create it like this.

{!./src/db_mongodb.py!}

Notice that we pass a reference to your UserDB model.

!!! info The database adapter will automatically create a unique index on id and email.

!!! warning FastAPI Users will use its defined id UUID as unique identifier for the user, rather than the builtin MongoDB _id.

Next steps

We will now configure an authentication method.