Skip to content

Commit

Permalink
Merge pull request #148 from killbill/flyway-fixes
Browse files Browse the repository at this point in the history
ansible: skip validations before migration
  • Loading branch information
pierre committed May 3, 2019
2 parents df2b2e7 + a2fe265 commit 7697290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansible/roles/migrations/tasks/migrate.yml
Expand Up @@ -21,7 +21,7 @@

- block:
- name: run SQL migration
command: "{{ flyway }} -locations=filesystem:{{ migration['dir'] }} -table={{ migration['table'] }} migrate"
command: "{{ flyway }} -locations=filesystem:{{ migration['dir'] }} -table={{ migration['table'] }} -validateOnMigrate=false migrate"
register: java_migrations
ignore_errors: True
tags: migrations
Expand Down

0 comments on commit 7697290

Please sign in to comment.