프리즈마 데이터 모델을 변경하고 npx prisma db push 를 실행하자 아래와 같은 에러가 발생.
Development and production branches
PlanetScale provides two types of database branches:
- Development branches — Development branches provide isolated copies of your production database schema where you can make changes, experiment, or run CI. Note, only the schema is copied, not the data. To create a development branch with data from another branch, see the Data Branching™ feature section.
- Production branches — Production branches are highly available databases intended for production traffic. They are protected from direct schema changes by default and include automated daily backups. To make a change to a production branch, you must create a deploy request.
→ PlanetScale은 두가지 타입의 데이터베이스 브랜치를 제공합니다.
개발 브랜치 - 개발 브랜치는 CI를 변경, 실험 또는 실행할 수 있는 프로덕션 데이터베이스 스키마의 격리된 복사본을 제공합니다. 스키마만 복사되고 데이터는 복사되지 않습니다.
프로덕션 브랜치 - 생산 분기는 생산 트래픽을 위한 고가용성 데이터베이스입니다. 기본적으로 직접적인 스키마 변경으로부터 보호되며 자동 일일 백업을 포함합니다. 프로덕션 분기를 변경하려면 배포 요청을 만들어야 합니다.
db에 push하는 과정에서 왜인지 main브랜치가 production branch로 변경되었고 직접적인 스키마 변경이 되지않는 것이었다.
pscale branch create <DATABASE_NAME> <BRANCH_NAME>
// .env
DATABASE_URL="mysql://127.0.0.1:59350/panda-project"
model User {
id Int @id @default(autoincrement())
createdDate DateTime @default(now())
email String @unique
password String
nickname String @unique
Product Product[]
followings User[] @relation("followRelation")
followers User[] @relation("followRelation")
}
model Product {
id Int @id @default(autoincrement())
title String
price Int
createdDate DateTime @default(now())
summary String?
rental Boolean @default(false)
category String
brand String
like Int @default(0)
view Int @default(0)
user User @relation(fields: [userId], references: [id])
userId Int
Look Look? @relation(fields: [lookId], references: [id])
lookId Int?
hashTag HashTag[]
}
model HashTag {
id Int @id @default(autoincrement())
tag String @unique
Product Product[]
Look Look[]
}
model Look {
id Int @id @default(autoincrement())
summary String?
createdDate DateTime @default(now())
product Product[]
hashTag HashTag[]
}
...
✏️ 결론 : 스키마 변경은 dev 브랜치에서 하고 배포용으로 main으로 deploy request를 보내 병합하면 된다.
(+ 추가)
planetScale을 사용할 때 prisma migrate보다 db push를 사용할 것.
스키마 변경이 있을 때 planetscale이 기본적으로 diff를 수행하고 마이그레이션 단계를 파악한다.
👉 참고한 블로그 https://birdmee.tistory.com/57