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.
18 lines
437 B
Plaintext
18 lines
437 B
Plaintext
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "sqlite"
|
|
url = "file:dev.db"
|
|
}
|
|
|
|
model records {
|
|
id Int @id @default(autoincrement())
|
|
subdomain String @unique(map: "sqlite_autoindex_records_1")
|
|
pointsto String @unique(map: "sqlite_autoindex_records_2")
|
|
uuid String @unique(map: "sqlite_autoindex_records_3")
|
|
renew Int @default(0)
|
|
redirect Int @default(0)
|
|
}
|