diff --git a/content/300-guides/050-database/900-turso.mdx b/content/300-guides/050-database/900-turso.mdx index 986238b45a..ce7f3d0054 100644 --- a/content/300-guides/050-database/900-turso.mdx +++ b/content/300-guides/050-database/900-turso.mdx @@ -121,15 +121,15 @@ To update your database schema: 1. Generate a migration file using `prisma migrate dev` against a local SQLite database: -```sh -npx prisma migrate dev --name init # Migration name -``` + ```sh + npx prisma migrate dev --name init # Migration name + ``` 2. Apply the migration using Turso's CLI: -```sh -turso db shell turso-prisma-db < ./prisma/migrations/20230922132717_init/migration.sql # Replace `20230922132717_init` with the existing migration -``` + ```sh + turso db shell turso-prisma-db < ./prisma/migrations/20230922132717_init/migration.sql # Replace `20230922132717_init` with the existing migration + ``` This workflow does not support tracking the history of applied migrations.