This page explains how to get started with migrating your schema in a development environment using Prisma Migrate. Get started with Prisma Migrate from scratch To get started with Prisma Migrate in a development environment: Create a Prisma schema: datasource db { provider = "postgresql" url = env("DATABASE_URL") } model User { id Int @id @default(autoincrement()) name String posts Post[] } mode
