Skip to content

Commit

Permalink
Adds users metadata column (#1387)
Browse files Browse the repository at this point in the history
  • Loading branch information
zomars committed Dec 28, 2021
1 parent 81e2ae1 commit 9b58369
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "users" ADD COLUMN "metadata" JSONB;
1 change: 1 addition & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ model User {
brandColor String @default("#292929")
// the location where the events will end up
destinationCalendar DestinationCalendar?
metadata Json?
@@map(name: "users")
}
Expand Down

1 comment on commit 9b58369

@vercel
Copy link

@vercel vercel bot commented on 9b58369 Dec 28, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.