blitz prisma migrate dev
The migrate dev command updates your database using migrations files during development
Options
| Name | Description | 
|---|---|
| -h, --help | Display this help message | 
| --schema  <Schema path> | Custom path to your Prisma schema | 
| --skip-seed | Skip triggering seed | 
| --skip-generate | Skip triggering generators (e.g. Prisma Client) | 
| --create-only | Create a new migration but do not apply it. The migration will be empty if there are no changes in Prisma schema | 
| -n, --name  [filename] | The name of the migration. If no name is provided, the CLI will prompt you |