Added Connectwise Compnay Syncing

This commit is contained in:
2026-01-26 17:09:18 -06:00
parent 4524c0258a
commit 7748e6171b
19 changed files with 1783 additions and 9 deletions
+13 -2
View File
@@ -34,7 +34,7 @@ model User {
emailVerified DateTime?
image String?
userId String @unique
userId String @unique
token String?
sessions Session[]
@@ -53,4 +53,15 @@ model Role {
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
}
model Company {
id String @id @default(cuid())
name String
cw_CompanyId Int @unique
cw_Identifier String @unique
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}