Samrith Shankar
11/13/2020, 10:20 AM# schema.prisma
datasource db {
provider = "postgresql"
url = "file:./test.db"
}
For postgres? I need to create a mock db for tests in order to not pollute production database. Right now I am getting this error (which is clear):
Error validating datasource `db`: The URL for datasource `db` must start with the protocol `postgresql://`
Ryan
11/13/2020, 10:29 AMSamrith Shankar
11/13/2020, 10:43 AM