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