Baselines an existing database, excluding all migrations up to and including baselineVersion.
> gradle flywayBaseline
See configuration for a full list of supported configuration parameters.
flyway {
driver = 'org.hsqldb.jdbcDriver'
url = 'jdbc:hsqldb:file:/db/flyway_sample;shutdown=true'
user = 'SA'
password = 'mySecretPwd'
connectRetries = 10
initSql = 'SET ROLE \'myuser\''
schemas = ['schema1', 'schema2', 'schema3']
createSchemas=true
table = 'schema_history'
tablespace = 'my_tablespace'
callbacks = ['com.mycompany.proj.CustomCallback', 'com.mycompany.proj.AnotherCallback']
skipDefaultCallbacks = false
baselineVersion = 5
baselineDescription = "Let's go!"
workingDirectory = 'C:/myproject'
jdbcProperties = [
'someProperty' : 'someValue',
'someOtherProperty' : 'someOtherValue'
]
}
> gradle flywayBaseline -i Creating schema history table: "PUBLIC"."flyway_schema_history" Schema baselined with version: 1