Skip to content

Commit

Permalink
plusplus
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudambro committed Apr 8, 2024
1 parent b5223b9 commit 61118df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- CreateIndex
CREATE INDEX "notification_user_id" ON "Notification"("user_id");
2 changes: 2 additions & 0 deletions api-node/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,8 @@ model Notification {
created_at DateTime @default(now())
updated_at DateTime @default(now()) @updatedAt
status NotificationEnum?
@@index([user_id], name: "notification_user_id")
}

model Feedback {
Expand Down

0 comments on commit 61118df

Please sign in to comment.