net.moznion.mysql.diff.model.OrdinaryKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mysql-diff Show documentation
Show all versions of mysql-diff Show documentation
Detect and extract diff between two table declarations from schema of MySQL
package net.moznion.mysql.diff.model;
import lombok.Getter;
@Getter
public class OrdinaryKey {
private final String name;
private final String column;
public OrdinaryKey(String name, String column) {
this.name = name;
this.column = column;
}
}