com.github.zhengframework.jdbc.migrate.FlywayConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zheng-migrate-flyway Show documentation
Show all versions of zheng-migrate-flyway Show documentation
zheng framework module: database migrate support by flyway
package com.github.zhengframework.jdbc.migrate;
import com.github.zhengframework.configuration.ConfigurationDefine;
import com.github.zhengframework.configuration.annotation.ConfigurationInfo;
import lombok.Data;
import lombok.NoArgsConstructor;
@NoArgsConstructor
@Data
@ConfigurationInfo(prefix = "zheng.flyway", supportGroup = true)
public class FlywayConfig implements ConfigurationDefine {
private boolean enable = true;
private String location = "classpath:db/migration/";
}