We would like to exclude _prisma_migrations because, in a local environment, the table is not always present, causing the generated files to change for no valid reason. However, we encountered this error:
"Collection '_prisma_migrations' not found. List of available collections."
Would it be possible to allow optionally absent tables in the exclude field like this?
.addDataSource(createSqlDataSource("database.url"), {
exclude: ["_prisma_migrations"],
})