All Downloads are FREE. Search and download functionalities are using the official Maven repository.

in.hocg.boot.flyway.autoconfiguration.properties.FlywayProperties Maven / Gradle / Ivy

There is a newer version: 1.0.63
Show newest version
package in.hocg.boot.flyway.autoconfiguration.properties;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * Created by hocgin on 2020/8/15
 * email: [email protected]
 *
 * @author hocgin
 */
@Data
@ConfigurationProperties(FlywayProperties.PREFIX)
public class FlywayProperties {
    public static final String PREFIX = "boot.flyway";

    /**
     * repair-on-migrate default: false
     */
    private Boolean repairOnMigrate = false;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy