Adds users metadata column (#1387)
This commit is contained in:
parent
81e2ae1352
commit
9b583694a3
2 changed files with 3 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "users" ADD COLUMN "metadata" JSONB;
|
|
@ -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")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue