Update schema & migrate changes
Learn how to update your database schema and migrate changes with Prisma in supastarter.
To update your database schema, you can simply edit the schema.prisma
file in the /packages/database
library. You can find more information about the Prisma schema file here.
To add an entity for "posts" for example, you can add the following to your schema:
Migrate changes (optional)
If you want to to keep a migration history of your database changes, you can run the following command to create a new migration:
Push your changes to the database
To push your changes to the database, you can run the following command:
Generate prisma client
After you have pushed your schema changes, you need to re-generate the prisma client. You can do this by running the following command:
This command will automatically be run when you start the development server.