Notice
Recent Posts
Recent Comments
Link
목록2024/07/18 (1)
HJW's IT Blog
[CodeIt] 07월 3주차
Prisma 설치 / 초기화npm install prisma --save-devnpm install @prisma/clientnpx prisma init --datasource-provider db-type // qostgresql, mysql, sqlite 등Prisma Schema 생성// This is your Prisma schema file,// learn more about it in the docs: generator client { provider = "prisma-client-js"}datasource db { provider = "postgresql" url = env("DATABASE_URL")}model User { id String @id @defa..
카테고리 없음
2024. 7. 18. 16:25