For PostgreSQL users - where are your DBs hosted?

Tutorial - Configure the development database


Flyway Desktop will prompt you to link a development database if this hasn't already been set up.

  1. Click Link development database.

    From this screen you can enter the connection details for your development database, including authentication type and credentials.
    By default, your password is stored in your operating systems built-in credential storage tool.
    By default, your development database information is stored to the user settings. This is useful if you have a dedicated development database.  If everyone on your team is using the same development database, then choose to save the database information to the project settings.
  2. Click Test connection or Test and save to close the dialog and start tracking changes to your development database.
  3. If needed, you can change your development database details by clicking on the blue settings cog in the upper right corner.
      

You can add a development database environment configuration to your toml configuration file or user configuration file as follows:

  1. [environments.development]
  2. url = "jdbc:sqlserver://localhost;authentication=sqlPassword;databaseName=Dev;encrypt=true;trustServerCertificate=true"
  3. user = "sa"
  4. password = "..."





Didn't find what you were looking for?