harness.sql.autoSchema.Tables.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of harness-sql_3 Show documentation
Show all versions of harness-sql_3 Show documentation
Miscellaneous libraries/utilities for Scala.
package harness.sql.autoSchema
import harness.sql.*
final class Tables private (private[autoSchema] val tableSchemas: List[TableSchema.AnySchema])
object Tables {
def apply(tableSchemas: TableSchema.AnySchema*): Tables = new Tables(tableSchemas.toList)
def fromCompanions(companions: Table.Companion.AnyCompanion*): Tables = new Tables(companions.toList.map(_.tableSchema))
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy