You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
300 B
Plaintext

generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "sqlite"
url = "file:dev.db"
}
model records {
id Int @default(autoincrement()) @id
pointsto String @unique
renew Int? @default(0)
subdomain String @unique
uuid String @unique
}