Next.js Discord

Discord Forum

Best Way to Model Integrations in Postgres?

Unanswered
Elegant Trogon posted this in #help-forum
Open in Discord
Elegant TrogonOP
Hey everyone, I need advice on modeling data for a system with multiple integrations.

Currently, I plan to support 4-5 integrations (e.g., BigCommerce, Shopify), each requiring unique information like API keys. For now, an organization can only have one integration, but I want to design the model so it’s easy to expand to multiple integrations per organization in the future.

I’m using Postgres and wondering about the best practices for structuring this. How should I model these integrations to handle their unique data while keeping things scalable and maintainable? Any suggestions or examples would be greatly appreciated!

This is my current setup it just holds it in a JSON which feels dirty

model Integration {
  id             String          @id @default(cuid())
  type           IntegrationType // Type of integration (BigCommerce, Shopify, etc)
  organizationId String          @unique // Ensures one integration per org for now
  organization   Organization    @relation(fields: [organizationId], references: [id], onDelete: Cascade)
  
  // Integration-specific credentials stored securely
  credentials    Json           // Stores integration-specific auth data
  
  // Common fields across integrations
  storeName      String?
  storeUrl       String?
  storeLogo      String?
  
  // Integration status
  isActive       Boolean        @default(true)
  lastSyncedAt   DateTime?
  
  // Metadata for integration-specific data
  metadata       Json?
  
  createdAt      DateTime       @default(now())
  updatedAt      DateTime       @updatedAt

  @@index([type])
  @@index([organizationId])
} 

model Organization {
  id          String   @id @default(cuid())
  name        String
  slug        String   @unique
  domain      String?  @unique // Custom domain for the organization
  logo        String?  // Organization logo URL
  brandColor  String?  // Primary brand color (hex)
  metadata    Json?    // Flexible metadata storage
  createdAt   DateTime @default(now())
  updatedAt   DateTime @updatedAt
  
  // Relations
  members     Member[]
  invitations Invitation[]
  roles       OrganizationRole[]
  integration Integration?  // One-to-one relation with integration

  @@index([name])
  @@index([slug])
  @@index([domain])
}

7 Replies

Are you using something like https://www.dbdesigner.net/ to help plan it out?
@adam.birds Are you using something like https://www.dbdesigner.net/ to help plan it out?
Elegant TrogonOP
Just cursor haha but will check this out!
Yeah I'd take a look, helped me plan a few of my things out. Just so i can try and give a proposal, what sort of info are you expecting per integration. The way I normally do it, is have my account or organisation model (depending on if single user or a team situation). Then create a model for each integration as a one to one relationship with either the user/organisation. And then it will support them supporting all. In the emantime you can just add a check for if they have one, they can't have another etc.
yes.
Because of the fact the data from each integration is going to be unique the model should be. If we where talking about integrations in terms of outgoing/incoming webhooks that is different as the situation is always most likely going to be URL, payload etc. But in this case, where you will use oauth for each and potentially want to pull in things like storename, ID, maybe a marketplace ID, which could be different etc, make sense to maintain it that way.
And for ease, and lack of potential null issues, have all those one-to-one models created at the creation of the org, but with is_enabled (or similar) boolean to false. Then when you setup the integration you just set enabled to true along with adding the ither fields etc