diff --git a/docs/docs/cli-commands.md b/docs/docs/cli-commands.md index 82a0e9ad86a4..c28ac5e290f7 100644 --- a/docs/docs/cli-commands.md +++ b/docs/docs/cli-commands.md @@ -1193,9 +1193,6 @@ yarn redwood generate sdl The sdl will inspect your `schema.prisma` and will do its best with relations. Schema to generators isn't one-to-one yet (and might never be). - - | Arguments & Options | Description | | -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `model` | Model to generate the sdl for | @@ -1627,16 +1624,6 @@ If you wanted to seed your database using a different method (like `psql` and an In addition, you can [code along with Ryan Chenkie](https://www.youtube.com/watch?v=2LwTUIqjbPo), and learn how libraries like [faker](https://www.npmjs.com/package/faker) can help you create a large, realistic database fast, especially in tandem with Prisma's [createMany](https://www.prisma.io/docs/reference/api-reference/prisma-client-reference#createmany). - - - - - - - - - - **Log Formatting** If you use the Redwood Logger as part of your seed script, you can pipe the command to the LogFormatter to output prettified logs. @@ -1714,16 +1701,6 @@ Create a migration from changes in Prisma schema, apply it to the database, trig yarn redwood prisma migrate dev ``` - - - - - - - - - - #### prisma migrate deploy Apply pending migrations to update the database schema in production/staging.