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

com.github.zhengframework.jdbc.migrate.FlywayConfig Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
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/";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy