Examples of SqlMigrationResolver


Examples of org.flywaydb.core.internal.resolver.sql.SqlMigrationResolver


    @Override
    public Collection<ResolvedMigration> resolveMigrations() {

        SqlMigrationResolver delegate = new SqlMigrationResolver(this.dbSupport, null, getLocation(), getPlaceholderReplacer(), getEncoding(), getSqlMigrationPrefix(), flyway.getSqlMigrationSeparator(), getSqlMigrationSuffix());
        Collection<ResolvedMigration> resolvedMigrations = delegate.resolveMigrations();
        for (ResolvedMigration migration : resolvedMigrations) {
            ((ResolvedMigrationImpl) migration).setType(MigrationType.CUSTOM);
        }
        return resolvedMigrations;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.