-
I am currently working on an application that already contains many tables. I want to integrate Kratos into my current database rather than create a separate database for it because I need to link identity to my current tables. The problem is I want to separate my domain tables and Kratos tables using PostgreSQL schema. Now, everything is in the default schema; |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Sorry for the late reply! We use pgx under the hood ( https://github.com/jackc/pgx ) which I believe allows setting |
Beta Was this translation helpful? Give feedback.
Sorry for the late reply! We use pgx under the hood ( https://github.com/jackc/pgx ) which I believe allows setting
?search_path=foo,bar,public
in the DSN, so e.g.postgres://user:password@host:123/dbname?search_path=...