
eu.miltema.slimdbsync.def.ForeignKeyDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slim-db-sync Show documentation
Show all versions of slim-db-sync Show documentation
A lightweight library for updating database schema to reflect current entities
package eu.miltema.slimdbsync.def;
public class ForeignKeyDef {
public String localTable;
public String localColumn;
public String foreignTable;
public String foreignColumn;
public String constraintName;
public ForeignKeyDef(String localTable, String localColumn, String foreignTable, String foreignColumn, String constraintName) {
this.localTable = localTable;
this.localColumn = localColumn;
this.foreignTable = foreignTable;
this.foreignColumn = foreignColumn;
this.constraintName = constraintName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy