Files
ansible/roles/koillection/tasks/db_migration.yml
VC 13bda0c4c0
All checks were successful
ansible-lint / lint-everything (push) Successful in 1m44s
: performs DB migration automatically
2025-08-29 08:02:55 +02:00

10 lines
219 B
YAML

---
- name: Run DB migration
become: true
become_user: www-data
ansible.builtin.command:
cmd: "php bin/console doctrine:migrations:migrate -n -q"
chdir: "{{ koillection_app_home }}"
changed_when: false