Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubno committed Oct 20, 2023
1 parent 002e9a2 commit 4a3d49d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/internal/db/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func NewClient(ctx context.Context) (*DB, error) {
return nil, fmt.Errorf("database URL is empty")
}

client, err := ent.Open(dialect.Postgres, databaseURL, ent.Debug(), ent.AlternateSchema(ent.SchemaConfig{
client, err := ent.Open(dialect.Postgres, databaseURL, ent.AlternateSchema(ent.SchemaConfig{
User: "auth",
}))
if err != nil {
Expand Down

0 comments on commit 4a3d49d

Please sign in to comment.