Redgate Change Control 4

Project user settings

In v5, Redgate Change Control has been renamed to Flyway Desktop. Check out the latest documentation at https://documentation.red-gate.com/fd


All project settings can be overridden in the user settings file, redgate-change-control.user.json.

By default database connection information is stored in the user settings file instead of the project file as it is likely to vary between users. It can be stored in the project settings directly if desired.

Example:

{
    "developmentDatabase": {
        "connectionProvider": {
            "type": "inline",
            "url": "jdbc:oracle:thin:@//localhost:1521/dev",
            "username": "developmentUsername",
            "password": "developmentPassword"
        }
    },
    "deployment": {
        "shadowDatabase": {
            "schema": "TEST_RCA_SHADOW",
            "connectionProvider": {
                "type": "inline",
                "url": "jdbc:oracle:thin:@//localhost:1521/shadow",
                "username": "shadowUsername",
                "password": "shadowPassword"
            }
        }
    }
}

Didn't find what you were looking for?