Skip to content
Advertisement

Tag: flyway

Flyway does not insert values to database

I added flyway library to my spring project. I configurated it and wrote some instuctions, project compiles but flyway does not insert values provided into data base. Config of application.yml: Impl: [ressource folder] SQL instructions that must be insert: But after running application, they dont figure in database. The table is being created but fields are null. Answer I fixed

How to add a comment to flyway migration

I am trying to make my big migration more self explaining and that’s why I need to add some comments to it. However, I tried a few approaches and haven’t succeeded with them. I tried: // # <!– TEXT –> Error: Is there a way I can add a comment to flyway SQL migration? Answer The following should work on

Advertisement