org.jooq.util.mysql.mysql.tables.ProcsPriv Maven / Gradle / Ivy
/**
* This class is generated by jOOQ
*/
package org.jooq.util.mysql.mysql.tables;
/**
* This class is generated by jOOQ.
*
* Procedure privileges
*/
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class ProcsPriv extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 261561737;
/**
* The singleton instance of mysql.procs_priv
*/
public static final org.jooq.util.mysql.mysql.tables.ProcsPriv PROCS_PRIV = new org.jooq.util.mysql.mysql.tables.ProcsPriv();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The table column mysql.procs_priv.Host
*
* This column is part of the table's PRIMARY KEY
*/
public static final org.jooq.TableField HOST = createField("Host", org.jooq.impl.SQLDataType.CHAR, PROCS_PRIV);
/**
* The table column mysql.procs_priv.Db
*
* This column is part of the table's PRIMARY KEY
*/
public static final org.jooq.TableField DB = createField("Db", org.jooq.impl.SQLDataType.CHAR, PROCS_PRIV);
/**
* The table column mysql.procs_priv.User
*
* This column is part of the table's PRIMARY KEY
*/
public static final org.jooq.TableField USER = createField("User", org.jooq.impl.SQLDataType.CHAR, PROCS_PRIV);
/**
* The table column mysql.procs_priv.Routine_name
*
* This column is part of the table's PRIMARY KEY
*/
public static final org.jooq.TableField ROUTINE_NAME = createField("Routine_name", org.jooq.impl.SQLDataType.CHAR, PROCS_PRIV);
/**
* The table column mysql.procs_priv.Routine_type
*
* This column is part of the table's PRIMARY KEY
*/
public static final org.jooq.TableField ROUTINE_TYPE = createField("Routine_type", org.jooq.util.mysql.MySQLDataType.VARCHAR.asEnumDataType(org.jooq.util.mysql.mysql.enums.ProcsPrivRoutineType.class), PROCS_PRIV);
/**
* The table column mysql.procs_priv.Grantor
*/
public static final org.jooq.TableField GRANTOR = createField("Grantor", org.jooq.impl.SQLDataType.CHAR, PROCS_PRIV);
/**
* The table column mysql.procs_priv.Proc_priv
*/
public static final org.jooq.TableField PROC_PRIV = createField("Proc_priv", org.jooq.impl.SQLDataType.VARCHAR, PROCS_PRIV);
/**
* The table column mysql.procs_priv.Timestamp
*/
public static final org.jooq.TableField TIMESTAMP = createField("Timestamp", org.jooq.impl.SQLDataType.TIMESTAMP, PROCS_PRIV);
/**
* No further instances allowed
*/
private ProcsPriv() {
super("procs_priv", org.jooq.util.mysql.mysql.Mysql.MYSQL);
}
}