pro.fessional.wings.tiny.grow.database.autogen.DefaultSchemaTinyGrow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiny-grow Show documentation
Show all versions of tiny-grow Show documentation
Tiny data tracking, growth analysis
The newest version!
/*
* This file is generated by jOOQ.
*/
package pro.fessional.wings.tiny.grow.database.autogen;
import org.jooq.Catalog;
import org.jooq.Table;
import org.jooq.impl.SchemaImpl;
import pro.fessional.wings.tiny.grow.database.autogen.tables.WinGrowTrackTable;
import javax.annotation.processing.Generated;
import java.util.Arrays;
import java.util.List;
/**
* The schema wings
.
*/
@Generated(
value = {
"https://www.jooq.org",
"jOOQ version:3.18.9",
"schema version:2020102801"
},
comments = "This class is generated by jOOQ"
)
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class DefaultSchemaTinyGrow extends SchemaImpl {
private static final long serialVersionUID = 1L;
/**
* The reference instance of DEFAULT_SCHEMA
*/
public static final DefaultSchemaTinyGrow DEFAULT_SCHEMA = new DefaultSchemaTinyGrow();
/**
* The table win_grow_track
.
*/
public final WinGrowTrackTable WinGrowTrack = WinGrowTrackTable.WinGrowTrack;
/**
* No further instances allowed
*/
private DefaultSchemaTinyGrow() {
super("", null);
}
@Override
public Catalog getCatalog() {
return DefaultCatalogTinyGrow.DEFAULT_CATALOG;
}
@Override
public final List> getTables() {
return Arrays.asList(
WinGrowTrackTable.WinGrowTrack
);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy