Don't mention Postgres roles, just say users

This commit is contained in:
Slavi Pantaleev 2020-12-14 10:04:37 +02:00
parent b217a2ed69
commit f1e85f7112

View file

@ -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
$$;