Explorar el Código

Don't mention Postgres roles, just say users

pull/740/head
Slavi Pantaleev hace 5 años
padre
commit
f1e85f7112
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      roles/matrix-postgres/templates/init-additional-db-user-and-role.sql.j2

+ 1
- 1
roles/matrix-postgres/templates/init-additional-db-user-and-role.sql.j2 Ver fichero

@@ -4,7 +4,7 @@ DO $$
BEGIN
CREATE USER {{ additional_db.username }};
EXCEPTION WHEN DUPLICATE_OBJECT THEN
RAISE NOTICE 'not creating role {{ additional_db.username }}, since it already exists';
RAISE NOTICE 'not creating user {{ additional_db.username }}, since it already exists';
END
$$;



Cargando…
Cancelar
Guardar