Hello, I am getting this error when trying to gene...
# orm-help
g
Hello, I am getting this error when trying to generate:
Copy code
error: Property not known: "activeProvider".
-->  schema.prisma:4
|
3 |   provider       = "mongodb"
4 |   activeProvider = "mongodb"
5 |   url            = env("DATABASE_URL")
|
n
Hey Geebrox 👋 activeProvider is an unknown field due to which you are receiving this error. Can you remove the activeProvider field and check? The accepted field in datasource block are
provider
,
url
,
shadowDatabaseUrl
and
referentialIntegrity
g
@Nurul Hello, thank you for your response. Sure I can remove and it works, but it is autogenerated by aurora, it was working before last update, but now it throws an error 😞
n
@Sabin Adams Should be able to sort this out
s
@Geebrox Would you mind creating an issue on the Aurora repo describing the problem?