Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
chore: entityMappings on Connection db model (#1268)
Browse files Browse the repository at this point in the history
## Test Plan

[Describe test plan here]

## Deployment instructions

[Add any special deployment instructions here]
  • Loading branch information
albertyfwu authored Jul 20, 2023
1 parent ac76eae commit 4b7e607
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 "connections" ADD COLUMN "entity_mappings" JSONB;
1 change: 1 addition & 0 deletions packages/db/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ model Connection {
provider Provider @relation(fields: [providerId], references: [id])
providerId String @map("provider_id")
schemaMappingsConfig Json? @map("schema_mappings_config")
entityMappings Json? @map("entity_mappings")
objectSyncs ObjectSync[]
entitySyncs EntitySync[]
Expand Down

0 comments on commit 4b7e607

Please sign in to comment.