In the last lesson, we manually defined our users' properties, their full name, email, and password. That's ok for the small amount of data needed for our users, but this can get very excessive with larger models. To help with this, we can introduce factories.
Factories allow us to create real model instances and rows within our database using fake data. This will allow us to create a user by simply calling:
const user = await UserFactory.create();