We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the documentation the way to add a placeholder is :
placeholders:{ name: 'test', },
However, when running the task i get:
java -cp /home/robixxu/root/<project>/node_modules/grunt-flyway/flyway-3.2.1/lib/flyway-commandline-3.2.1.jar:/home/robixxu/root/<project>/node_modules/grunt-flyway/flyway-3.2.1/lib/flyway-core-3.2.1.jar org.flywaydb.commandline.Main migrate -url="jdbc:postgresql://localhost:5432/somedb" -driver="org.postgresql.Driver" -user="someuser" -password="somepassword" -locations="filesystem:db/migration" -placeholders.0="undefined"
It seems like placeholders should be an array. I tried using ${0}in the migration file and pass:
${0}
placeholders:{ 'test' },
It seems to work, but is not a good solution if you have many placeholders.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
According to the documentation the way to add a placeholder is :
However, when running the task i get:
It seems like placeholders should be an array.
I tried using
${0}
in the migration file and pass:It seems to work, but is not a good solution if you have many placeholders.
The text was updated successfully, but these errors were encountered: