You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A missing space in pg-init-business.sql.j2 prevent extension being created in correct schema.
{% if 'extensions' in database %}{% for extension in database.extensions %}
CREATE EXTENSION IF NOT EXISTS "{{ extension.name }}"{% if 'schema' in extension %}WITH SCHEMA "{{ extension.schema }}"{% endif %};
{% endfor %}{% endif %}
The text was updated successfully, but these errors were encountered:
A missing space in
pg-init-business.sql.j2
prevent extension being created in correct schema.The text was updated successfully, but these errors were encountered: