/* * This file is generated by jOOQ. */ package golf.handicap.generated import kotlin.collections.List import org.jooq.Constants import org.jooq.Schema import org.jooq.impl.CatalogImpl /** * This class is generated by jOOQ. */ @Suppress("warnings") open class DefaultCatalog : CatalogImpl("") { companion object { /** * The reference instance of DEFAULT_CATALOG */ val DEFAULT_CATALOG: DefaultCatalog = DefaultCatalog() } /** * standard public schema */ val DEFAULT_SCHEMA: DefaultSchema get(): DefaultSchema = DefaultSchema.DEFAULT_SCHEMA override fun getSchemas(): List = listOf( DefaultSchema.DEFAULT_SCHEMA ) /** * A reference to the 3.21 minor release of the code generator. If this * doesn't compile, it's because the runtime library uses an older minor * release, namely: 3.21. You can turn off the generation of this reference * by specifying /configuration/generator/generate/jooqVersionReference */ private val REQUIRE_RUNTIME_JOOQ_VERSION = Constants.VERSION_3_21 }