Move Drupal templates into the PHP directory

This commit is contained in:
Oliver Davies 2024-02-10 11:42:36 +00:00
parent 30942b2d95
commit f602b6e1e6
17 changed files with 16 additions and 16 deletions

View file

@ -0,0 +1,5 @@
{% for database in database.extra_databases %}
CREATE DATABASE {{ database }};
GRANT ALL PRIVILEGES ON {{ database }}.* TO drupal@'%' IDENTIFIED BY 'drupal';
{% endfor %}