Tables.java

/*
 * This file is generated by jOOQ.
 */
package com.io7m.idstore.database.postgres.internal;


import com.io7m.idstore.database.postgres.internal.tables.Admins;
import com.io7m.idstore.database.postgres.internal.tables.Audit;
import com.io7m.idstore.database.postgres.internal.tables.Bans;
import com.io7m.idstore.database.postgres.internal.tables.EmailVerifications;
import com.io7m.idstore.database.postgres.internal.tables.Emails;
import com.io7m.idstore.database.postgres.internal.tables.LoginHistory;
import com.io7m.idstore.database.postgres.internal.tables.SchemaVersion;
import com.io7m.idstore.database.postgres.internal.tables.UserIds;
import com.io7m.idstore.database.postgres.internal.tables.UserPasswordResets;
import com.io7m.idstore.database.postgres.internal.tables.Users;


/**
 * Convenience access to all tables in the default schema.
 */
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Tables {

    /**
     * The table <code>ADMINS</code>.
     */
    public static final Admins ADMINS = Admins.ADMINS;

    /**
     * The table <code>AUDIT</code>.
     */
    public static final Audit AUDIT = Audit.AUDIT;

    /**
     * The table <code>BANS</code>.
     */
    public static final Bans BANS = Bans.BANS;

    /**
     * The table <code>EMAIL_VERIFICATIONS</code>.
     */
    public static final EmailVerifications EMAIL_VERIFICATIONS = EmailVerifications.EMAIL_VERIFICATIONS;

    /**
     * The table <code>EMAILS</code>.
     */
    public static final Emails EMAILS = Emails.EMAILS;

    /**
     * The table <code>LOGIN_HISTORY</code>.
     */
    public static final LoginHistory LOGIN_HISTORY = LoginHistory.LOGIN_HISTORY;

    /**
     * The table <code>SCHEMA_VERSION</code>.
     */
    public static final SchemaVersion SCHEMA_VERSION = SchemaVersion.SCHEMA_VERSION;

    /**
     * The table <code>USER_IDS</code>.
     */
    public static final UserIds USER_IDS = UserIds.USER_IDS;

    /**
     * The table <code>USER_PASSWORD_RESETS</code>.
     */
    public static final UserPasswordResets USER_PASSWORD_RESETS = UserPasswordResets.USER_PASSWORD_RESETS;

    /**
     * The table <code>USERS</code>.
     */
    public static final Users USERS = Users.USERS;
}