[error] prisma db push 중 오류

rlorxl·2023년 2월 14일
1

내용

프리즈마 데이터 모델을 변경하고 npx prisma db push 를 실행하자 아래와 같은 에러가 발생.
스크린샷 2023-02-11 오후 5 48 32

원인

참고 전문 👉 https://planetscale.com/docs/concepts/branching#if-you-need-to-make-a-schema-change-to-your-production-database-heres-how-you-do-it-with-planetscale

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로 변경되었고 직접적인 스키마 변경이 되지않는 것이었다.

스크린샷 2023-02-11 오후 8 37 10

해결

Create a development branch

image

1. 개발 브랜치 생성

pscale branch create <DATABASE_NAME> <BRANCH_NAME>
스크린샷 2023-02-15 오전 6 15 29 브랜치 생성 후 브랜치 리스트에 추가된 것 확인

2. 생성한 브랜치 연결

스크린샷 2023-02-11 오후 8 58 24
// .env
DATABASE_URL="mysql://127.0.0.1:59350/panda-project"

3. 모델 수정 후 db push

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[]
}
...
스크린샷 2023-02-11 오후 8 59 56 prisma studio나 planetScale - dev branches에서 변경된 스키마 확인 가능 스크린샷 2023-02-15 오전 6 18 58

✏️ 결론 : 스키마 변경은 dev 브랜치에서 하고 배포용으로 main으로 deploy request를 보내 병합하면 된다.

(+ 추가)

planetScale을 사용할 때 prisma migrate보다 db push를 사용할 것.

스키마 변경이 있을 때 planetscale이 기본적으로 diff를 수행하고 마이그레이션 단계를 파악한다.

👉 참고한 블로그 https://birdmee.tistory.com/57

0개의 댓글

관련 채용 정보