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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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") brandColor String @default("#292929")
// the location where the events will end up // the location where the events will end up
destinationCalendar DestinationCalendar? destinationCalendar DestinationCalendar?
metadata Json?
@@map(name: "users") @@map(name: "users")
} }