pheralb / slug

🌱 An open-source URL shortener built with T3 Stack.
https://slug.vercel.app
GNU General Public License v3.0
595 stars 59 forks source link

schema.prisma needs `relationMode = "prisma"` to work in pscale #12

Closed timfee closed 1 year ago

timfee commented 1 year ago

needed to update the schema file with

generator client {
  provider = "prisma-client-js"
}

datasource db {
  provider = "mysql"
  url = env("DATABASE_URL")
  relationMode = "prisma"
}
sainnhe commented 1 year ago

Thanks! This solves my problem.

pheralb commented 1 year ago

Added for next version 🚀