/* * This file is generated by jOOQ. */ package golf.handicap.generated import golf.handicap.generated.sequences.COURSE_ID_SEQ import golf.handicap.generated.tables.Course import golf.handicap.generated.tables.Golfer import golf.handicap.generated.tables.Groups import golf.handicap.generated.tables.Member import golf.handicap.generated.tables.Ratings import golf.handicap.generated.tables.Scores import kotlin.collections.List import org.jooq.Catalog import org.jooq.Sequence import org.jooq.Table import org.jooq.impl.DSL import org.jooq.impl.SchemaImpl /** * standard public schema */ @Suppress("warnings") open class DefaultSchema : SchemaImpl(DSL.name(""), DefaultCatalog.DEFAULT_CATALOG, DSL.comment("standard public schema")) { companion object { /** * The reference instance of DEFAULT_SCHEMA */ val DEFAULT_SCHEMA: DefaultSchema = DefaultSchema() } /** * The table course. */ val COURSE: Course get() = Course.COURSE /** * The table golfer. */ val GOLFER: Golfer get() = Golfer.GOLFER /** * The table groups. */ val GROUPS: Groups get() = Groups.GROUPS /** * The table member. */ val MEMBER: Member get() = Member.MEMBER /** * The table ratings. */ val RATINGS: Ratings get() = Ratings.RATINGS /** * The table scores. */ val SCORES: Scores get() = Scores.SCORES override fun getCatalog(): Catalog = DefaultCatalog.DEFAULT_CATALOG override fun getSequences(): List> = listOf( COURSE_ID_SEQ ) override fun getTables(): List> = listOf( Course.COURSE, Golfer.GOLFER, Groups.GROUPS, Member.MEMBER, Ratings.RATINGS, Scores.SCORES ) }