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

harness.sql.ForeignKeyRef.scala Maven / Gradle / Ivy

There is a newer version: 5.1.3
Show newest version
package harness.sql

final case class ForeignKeyRef private (schemaName: String, tableName: String, colName: String)
object ForeignKeyRef {
  def apply(schemaName: String, tableName: String, colName: String): ForeignKeyRef = new ForeignKeyRef(schemaName, tableName, colName)
  def apply(tableName: String, colName: String): ForeignKeyRef = new ForeignKeyRef("public", tableName, colName)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy