Package liquibase.database.structure

Examples of liquibase.database.structure.ForeignKeyInfo


   * liquibase.snapshot.jvm.JdbcDatabaseSnapshotGenerator#fillForeignKeyInfo
   * (java.sql.ResultSet)
   */
  @Override
  protected ForeignKeyInfo fillForeignKeyInfo(ResultSet rs) throws DatabaseException, SQLException {
    ForeignKeyInfo fkInfo = super.fillForeignKeyInfo(rs);
    if (fkInfo.getKeySeq() == 0) {
      fkInfo.setReferencesUniqueColumn(true);
    }
    return fkInfo;
  }
View Full Code Here

TOP

Related Classes of liquibase.database.structure.ForeignKeyInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.