Skip to content

Commit

Permalink
Drop SSO table and update schema.prisma
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Nov 30, 2023
1 parent 1af3b79 commit 9c4525a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
Warnings:
- You are about to drop the `SSO` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropTable
DROP TABLE "SSO";
13 changes: 0 additions & 13 deletions apps/api/src/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -272,19 +272,6 @@ model Config {
out_of_office_end DateTime?
}

model SSO {
id String @id @default(uuid())
createdAt DateTime @default(now())
updatedAt DateTime @default(now())
name String
clientId String
clientSecret String
active Boolean
issuer String?
tenantId String?
}

model Uptime {
id String @id @default(uuid())
createdAt DateTime @default(now())
Expand Down

0 comments on commit 9c4525a

Please sign in to comment.