Skip to content

db pull from an existing database errors with SASL authentication failed #751

Answered by RobertCraigie
simondpalmer asked this question in Q&A
Discussion options

You must be logged in to vote

Ah sorry, you would define one schema, e.g.

generator python {
  provider = "prisma-client-py"
}

generator js {
  provider = "prisma-client-py"
}

datasource db {
  provider = "postgresql"
  url      = "postgres://postgres:PASSWORD@db.xdyhoezrrqavppxekqqc.supabase.co:6543/postgres"
}

model Account {
  id                 String  @id @default(cuid())
  userId             String
  type               String
  provider           String
  providerAccountId  String
  refresh_token      String?  @db.Text
  access_token       String?  @db.Text
  expires_at         Int?
  token_type         String?
  scope              String?
  id_token           String?  @db.Text
  session_state      String?

  u…

Replies: 1 comment 14 replies

Comment options

You must be logged in to vote
14 replies
@simondpalmer
Comment options

@RobertCraigie
Comment options

Answer selected by simondpalmer
@simondpalmer
Comment options

@RobertCraigie
Comment options

@simondpalmer
Comment options

@RobertCraigie
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants