Fix pretix schema migration issue

Fixes django.db.migrations.exceptions.MigrationSchemaMissing
This commit is contained in:
Jakob Lechner 2023-12-07 17:34:22 +00:00
parent 303843e3dc
commit d27d488dba
No known key found for this signature in database
GPG key ID: 996082EFB5906C10

View file

@ -193,6 +193,7 @@ in
CREATE ROLE ${postgresql.user} WITH LOGIN PASSWORD '${postgresql.password}' CREATEDB;
CREATE DATABASE ${postgresql.database};
GRANT ALL PRIVILEGES ON DATABASE ${postgresql.database} TO ${postgresql.user};
ALTER DATABASE ${postgresql.database} OWNER TO ${postgresql.user};
'';
};