Dbo schema getting ignored in sql server
Hey I try to pull the database via prisma db pull with the following conf
it does not pull the dbo schema
generator client {
provider = "prisma-client"
output = "../../../../libs/omi/api/prisma/src"
previewFeatures = ["multiSchema"]
moduleFormat = "cjs"
}
datasource db {
provider = "sqlserver"
schemas = ["BALTIC", "BUNKER", "CONF", "FFA", "LOG", "PERIOD", "SEC", "SPOT", "SUBSCRIPTION", "dbo"]
url = env("DATABASE_URL")
}
it does not pull the dbo schema