mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 09:20:21 -04:00
419eba99a1
* fix(self-host): ensure migrations connect back to postgres database * fix(self-host): use supabase_admin user for supavisor pooler * fix(self-host): services healthchecks * fix(self-host): vector config path * feat(ci): add smoke test for self-hosted stack --------- Co-authored-by: Shawal Mbalire <mbalireshawal@gmail.com> Co-authored-by: Robson Martins <robson@controle.digital>
7 lines
144 B
SQL
7 lines
144 B
SQL
\set pguser `echo "$POSTGRES_USER"`
|
|
|
|
\c _supabase
|
|
create schema if not exists _supavisor;
|
|
alter schema _supavisor owner to :pguser;
|
|
\c postgres
|