- Add this code to db/schema.prisma:
model Project {
id Int @default(autoincrement()) @id
name String
}
- DB migrate
blitz prisma migrate dev
- Start the dev server
blitz dev
Open http://localhost:3000 with your browser to see the result.