We will follow quick start for prisma tutorial but with combination of express https://www.prisma.io/docs/getting-started/quickstart
Steps:
-
Install the prisma in this project
npm install prisma --save-dev
-
Init the sqlite
npx prisma init --datasource-provider sqlite
-
Find the file
prisma/schema.prisma
and add into it:
model User {
id Int @id @default(autoincrement())
email String @unique
name String?
posts Post[]
}
model Post {
id Int @id @default(autoincrement())
title String
content String?
published Boolean @default(false)
author User @relation(fields: [authorId], references: [id])
authorId Int
}
Models in the Prisma schema have two main purposes:
Represent the tables in the underlying database Serve as foundation for the generated Prisma Client API
-
Run the migration
npx prisma migrate dev --name init
This command did two things: It creates a new SQL migration file for this migration in the prisma/migrations directory. It runs the SQL migration file against the database. Because the SQLite database file didn't exist before, the command also created it inside the prisma directory with the name dev.db as defined via the environment variable in the .env file.
Now your DB and prisma is setup.
-
Let's create a first user running
node script.js
it should print you the newly created user. -
Let's work on the tasks in server.js