Adds users metadata column (#1387)

This commit is contained in:
Omar López
2021-12-28 02:15:52 -07:00
committed by GitHub
parent 81e2ae1352
commit 9b583694a3
2 changed files with 3 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "users" ADD COLUMN "metadata" JSONB;

View File

@@ -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")
}