Advertisement
Guest User

Untitled

a guest
Aug 12th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. flyway.baseline-description= #
  2. flyway.baseline-version=1 # version to start migration
  3. flyway.baseline-on-migrate= #
  4. flyway.check-location=false # Check that migration scripts location exists.
  5. flyway.clean-on-validation-error= #
  6. flyway.enabled=true # Enable flyway.
  7. flyway.encoding= #
  8. flyway.ignore-failed-future-migration= #
  9. flyway.init-sqls= # SQL statements to execute to initialize a connection immediately after obtaining it.
  10. flyway.locations=classpath:db/migration # locations of migrations scripts
  11. flyway.out-of-order= #
  12. flyway.password= # JDBC password if you want Flyway to create its own DataSource
  13. flyway.placeholder-prefix= #
  14. flyway.placeholder-replacement= #
  15. flyway.placeholder-suffix= #
  16. flyway.placeholders.*= #
  17. flyway.schemas= # schemas to update
  18. flyway.sql-migration-prefix=V #
  19. flyway.sql-migration-separator= #
  20. flyway.sql-migration-suffix=.sql #
  21. flyway.table= #
  22. flyway.url= # JDBC url of the database to migrate. If not set, the primary configured data source is used.
  23. flyway.user= # Login user of the database to migrate.
  24. flyway.validate-on-migrate= #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement