mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 14:41:41 +03:00
18 lines
216 B
Plaintext
18 lines
216 B
Plaintext
|
{{={= =}=}}
|
||
|
|
||
|
datasource db {
|
||
|
provider = "sqlite"
|
||
|
url = "file:./dev.db"
|
||
|
}
|
||
|
|
||
|
generator client {
|
||
|
provider = "prisma-client-js"
|
||
|
}
|
||
|
|
||
|
{=# entities =}
|
||
|
model {= name =} {
|
||
|
{= pslModelSchema =}
|
||
|
}
|
||
|
|
||
|
{=/ entities =}
|