/* * This file is generated by jOOQ. */ package models; import javax.annotation.Generated; import models.tables.Fortune; import models.tables.World; import org.jooq.Index; import org.jooq.OrderField; import org.jooq.impl.AbstractKeys; /** * A class modelling indexes of tables of the hello_world schema. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.10.3" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Indexes { // ------------------------------------------------------------------------- // INDEX definitions // ------------------------------------------------------------------------- public static final Index FORTUNE_PRIMARY = Indexes0.FORTUNE_PRIMARY; public static final Index WORLD_PRIMARY = Indexes0.WORLD_PRIMARY; // ------------------------------------------------------------------------- // [#1459] distribute members to avoid static initialisers > 64kb // ------------------------------------------------------------------------- private static class Indexes0 extends AbstractKeys { public static Index FORTUNE_PRIMARY = createIndex("PRIMARY", Fortune.FORTUNE, new OrderField[] { Fortune.FORTUNE.ID }, true); public static Index WORLD_PRIMARY = createIndex("PRIMARY", World.WORLD, new OrderField[] { World.WORLD.ID }, true); } }