diff --git a/content/300-guides/500-other/900-advanced-database-tasks/06-typesafe-raw-sql/01-safeql.mdx b/content/300-guides/500-other/900-advanced-database-tasks/06-typesafe-raw-sql/01-safeql.mdx index 4d3bf335ca..d63abff49f 100644 --- a/content/300-guides/500-other/900-advanced-database-tasks/06-typesafe-raw-sql/01-safeql.mdx +++ b/content/300-guides/500-other/900-advanced-database-tasks/06-typesafe-raw-sql/01-safeql.mdx @@ -101,7 +101,7 @@ model PointOfInterest { You'll notice that the `location` field uses an [`Unsupported`](/reference/prisma-schema-reference#unsupported) type. This means that we lose a lot of the benefits of Prisma when working with `PointOfInterest`. We'll be using [SafeQL](https://safeql.dev/) to fix this. -Like before, create and execute a migration `prisma migrate dev` to create the `PointOfInterest` table in your database: +Like before, create and execute a migration using the `prisma migrate dev` command to create the `PointOfInterest` table in your database: ```terminal npx prisma migrate dev --name add-poi