chore: Changes spacing.

This commit is contained in:
greysoh 2024-04-21 16:48:02 -04:00
parent b165bc04a4
commit c385d7b83b
No known key found for this signature in database
GPG key ID: FE0F173B8FC01571

View file

@ -15,7 +15,6 @@ model DesinationProvider {
name String
description String?
backend String
connectionDetails String
}
@ -25,13 +24,10 @@ model ForwardRule {
name String
description String?
sourceIP String
sourcePort Int
destIP String
destPort Int
destProviderID Int
enabled Boolean
}
@ -41,7 +37,6 @@ model Permission {
permission String
has Boolean
user User @relation(fields: [userID], references: [id])
userID Int
}
@ -51,11 +46,8 @@ model User {
email String @unique
name String
password String // Will be hashed using bcrypt
rootToken String?
isRootServiceAccount Boolean?
permissions Permission[]
}