Regenerated Postgres schema
This commit is contained in:
parent
aceb43dbd6
commit
8daa2803a9
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1535164315;
|
||||
private static final long serialVersionUID = -643028853;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_author</code>
|
||||
@ -32,12 +32,12 @@ public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.post
|
||||
/**
|
||||
* The column <code>public.t_author.first_name</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.String> FIRST_NAME = createField("first_name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.String> FIRST_NAME = createField("first_name", org.jooq.impl.SQLDataType.VARCHAR.length(50), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_author.last_name</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.String> LAST_NAME = createField("last_name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.String> LAST_NAME = createField("last_name", org.jooq.impl.SQLDataType.VARCHAR.length(50), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_author.date_of_birth</code>.
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1500332713;
|
||||
private static final long serialVersionUID = -481279776;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book</code>
|
||||
@ -47,7 +47,7 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgr
|
||||
/**
|
||||
* The column <code>public.t_book.title</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.String> TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.String> TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR.length(400), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book.published_in</code>.
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 494017524;
|
||||
private static final long serialVersionUID = 1720948043;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book_store</code>
|
||||
@ -27,7 +27,7 @@ public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.p
|
||||
/**
|
||||
* The column <code>public.t_book_store.name</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR.length(400), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_book_store</code> table reference
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1032423007;
|
||||
private static final long serialVersionUID = -831630360;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book_to_book_store</code>
|
||||
@ -27,7 +27,7 @@ public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.
|
||||
/**
|
||||
* The column <code>public.t_book_to_book_store.book_store_name</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord, java.lang.String> BOOK_STORE_NAME = createField("book_store_name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord, java.lang.String> BOOK_STORE_NAME = createField("book_store_name", org.jooq.impl.SQLDataType.VARCHAR.length(400), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book_to_book_store.book_id</code>.
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord> {
|
||||
|
||||
private static final long serialVersionUID = -461535411;
|
||||
private static final long serialVersionUID = -1932128239;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_booleans</code>
|
||||
@ -37,32 +37,32 @@ public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.po
|
||||
/**
|
||||
* The column <code>public.t_booleans.true_false_lc</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_TF_LC> TRUE_FALSE_LC = createField("true_false_lc", org.jooq.impl.SQLDataType.VARCHAR.asConvertedDataType(new org.jooq.test._.converters.Boolean_TF_LC_Converter()), this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_TF_LC> TRUE_FALSE_LC = createField("true_false_lc", org.jooq.impl.SQLDataType.VARCHAR.length(5).asConvertedDataType(new org.jooq.test._.converters.Boolean_TF_LC_Converter()), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_booleans.true_false_uc</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_TF_UC> TRUE_FALSE_UC = createField("true_false_uc", org.jooq.impl.SQLDataType.VARCHAR.asConvertedDataType(new org.jooq.test._.converters.Boolean_TF_UC_Converter()), this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_TF_UC> TRUE_FALSE_UC = createField("true_false_uc", org.jooq.impl.SQLDataType.VARCHAR.length(5).asConvertedDataType(new org.jooq.test._.converters.Boolean_TF_UC_Converter()), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_booleans.yes_no_lc</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_YES_NO_LC> YES_NO_LC = createField("yes_no_lc", org.jooq.impl.SQLDataType.VARCHAR.asConvertedDataType(new org.jooq.test._.converters.Boolean_YES_NO_LC_Converter()), this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_YES_NO_LC> YES_NO_LC = createField("yes_no_lc", org.jooq.impl.SQLDataType.VARCHAR.length(3).asConvertedDataType(new org.jooq.test._.converters.Boolean_YES_NO_LC_Converter()), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_booleans.yes_no_uc</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_YES_NO_UC> YES_NO_UC = createField("yes_no_uc", org.jooq.impl.SQLDataType.VARCHAR.asConvertedDataType(new org.jooq.test._.converters.Boolean_YES_NO_UC_Converter()), this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_YES_NO_UC> YES_NO_UC = createField("yes_no_uc", org.jooq.impl.SQLDataType.VARCHAR.length(3).asConvertedDataType(new org.jooq.test._.converters.Boolean_YES_NO_UC_Converter()), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_booleans.y_n_lc</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_YN_LC> Y_N_LC = createField("y_n_lc", org.jooq.impl.SQLDataType.CHAR.asConvertedDataType(new org.jooq.test._.converters.Boolean_YN_LC_Converter()), this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_YN_LC> Y_N_LC = createField("y_n_lc", org.jooq.impl.SQLDataType.CHAR.length(1).asConvertedDataType(new org.jooq.test._.converters.Boolean_YN_LC_Converter()), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_booleans.y_n_uc</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_YN_UC> Y_N_UC = createField("y_n_uc", org.jooq.impl.SQLDataType.CHAR.asConvertedDataType(new org.jooq.test._.converters.Boolean_YN_UC_Converter()), this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, org.jooq.test._.converters.Boolean_YN_UC> Y_N_UC = createField("y_n_uc", org.jooq.impl.SQLDataType.CHAR.length(1).asConvertedDataType(new org.jooq.test._.converters.Boolean_YN_UC_Converter()), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_booleans.vc_boolean</code>.
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1894852493;
|
||||
private static final long serialVersionUID = 1541584336;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_language</code>
|
||||
@ -27,17 +27,17 @@ public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.po
|
||||
/**
|
||||
* The column <code>public.t_language.cd</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> CD = createField("cd", org.jooq.impl.SQLDataType.CHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> CD = createField("cd", org.jooq.impl.SQLDataType.CHAR.length(2), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_language.description</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> DESCRIPTION = createField("description", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> DESCRIPTION = createField("description", org.jooq.impl.SQLDataType.VARCHAR.length(50), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_language.description_english</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> DESCRIPTION_ENGLISH = createField("description_english", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> DESCRIPTION_ENGLISH = createField("description_english", org.jooq.impl.SQLDataType.VARCHAR.length(50), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_language.id</code>.
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_639NumbersTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1534953377;
|
||||
private static final long serialVersionUID = -1496351383;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_639_numbers_table</code>
|
||||
@ -67,12 +67,12 @@ public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq
|
||||
/**
|
||||
* The column <code>public.t_639_numbers_table.big_integer</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_639NumbersTableRecord, java.math.BigInteger> BIG_INTEGER = createField("big_integer", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_639NumbersTableRecord, java.math.BigInteger> BIG_INTEGER = createField("big_integer", org.jooq.impl.SQLDataType.DECIMAL_INTEGER.precision(22), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_639_numbers_table.big_decimal</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_639NumbersTableRecord, java.math.BigDecimal> BIG_DECIMAL = createField("big_decimal", org.jooq.impl.SQLDataType.NUMERIC, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_639NumbersTableRecord, java.math.BigDecimal> BIG_DECIMAL = createField("big_decimal", org.jooq.impl.SQLDataType.NUMERIC.precision(22).scale(5), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_639_numbers_table.float</code>.
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_785Record> {
|
||||
|
||||
private static final long serialVersionUID = -2069958426;
|
||||
private static final long serialVersionUID = 970864264;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_785</code>
|
||||
@ -32,12 +32,12 @@ public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.genera
|
||||
/**
|
||||
* The column <code>public.t_785.name</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_785Record, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_785Record, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR.length(50), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.t_785.value</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_785Record, java.lang.String> VALUE = createField("value", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_785Record, java.lang.String> VALUE = createField("value", org.jooq.impl.SQLDataType.VARCHAR.length(50), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_785</code> table reference
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.VAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -365382847;
|
||||
private static final long serialVersionUID = -1986931489;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.v_author</code>
|
||||
@ -32,12 +32,12 @@ public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.postgres.gene
|
||||
/**
|
||||
* The column <code>public.v_author.first_name</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VAuthorRecord, java.lang.String> FIRST_NAME = createField("first_name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VAuthorRecord, java.lang.String> FIRST_NAME = createField("first_name", org.jooq.impl.SQLDataType.VARCHAR.length(50), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.v_author.last_name</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VAuthorRecord, java.lang.String> LAST_NAME = createField("last_name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VAuthorRecord, java.lang.String> LAST_NAME = createField("last_name", org.jooq.impl.SQLDataType.VARCHAR.length(50), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.v_author.date_of_birth</code>.
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.VBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1425573081;
|
||||
private static final long serialVersionUID = -532941840;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.v_book</code>
|
||||
@ -47,7 +47,7 @@ public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.postgres.genera
|
||||
/**
|
||||
* The column <code>public.v_book.title</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VBookRecord, java.lang.String> TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VBookRecord, java.lang.String> TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR.length(400), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.v_book.published_in</code>.
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.VLibraryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1885266855;
|
||||
private static final long serialVersionUID = -1083583376;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.v_library</code>
|
||||
@ -32,7 +32,7 @@ public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.postgres.gen
|
||||
/**
|
||||
* The column <code>public.v_library.title</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VLibraryRecord, java.lang.String> TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VLibraryRecord, java.lang.String> TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR.length(400), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.v_library</code> table reference
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_85Record> {
|
||||
|
||||
private static final long serialVersionUID = -1688168686;
|
||||
private static final long serialVersionUID = -73093436;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_test_case_85</code>
|
||||
@ -37,7 +37,7 @@ public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
/**
|
||||
* The column <code>public.x_test_case_85.x_unused_name</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_85Record, java.lang.String> X_UNUSED_NAME = createField("x_unused_name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_85Record, java.lang.String> X_UNUSED_NAME = createField("x_unused_name", org.jooq.impl.SQLDataType.VARCHAR.length(10), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.x_test_case_85</code> table reference
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1780305588;
|
||||
private static final long serialVersionUID = 1011107005;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_unused</code>
|
||||
@ -32,12 +32,12 @@ public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.post
|
||||
/**
|
||||
* The column <code>public.x_unused.name</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR.length(10), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.x_unused.big_integer</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord, java.math.BigInteger> BIG_INTEGER = createField("big_integer", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord, java.math.BigInteger> BIG_INTEGER = createField("big_integer", org.jooq.impl.SQLDataType.DECIMAL_INTEGER.precision(25), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.x_unused.id_ref</code>.
|
||||
@ -92,12 +92,12 @@ public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.post
|
||||
/**
|
||||
* The column <code>public.x_unused.name_ref</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord, java.lang.String> NAME_REF = createField("name_ref", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord, java.lang.String> NAME_REF = createField("name_ref", org.jooq.impl.SQLDataType.VARCHAR.length(10), this);
|
||||
|
||||
/**
|
||||
* The column <code>public.x_unused.FIELD 737</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord, java.math.BigDecimal> FIELD_737 = createField("FIELD 737", org.jooq.impl.SQLDataType.NUMERIC, this);
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord, java.math.BigDecimal> FIELD_737 = createField("FIELD 737", org.jooq.impl.SQLDataType.NUMERIC.precision(25).scale(2), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.x_unused</code> table reference
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.udt;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class UAddressType extends org.jooq.impl.UDTImpl<org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1004552631;
|
||||
private static final long serialVersionUID = 1174800253;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.u_address_type</code>
|
||||
@ -32,12 +32,12 @@ public class UAddressType extends org.jooq.impl.UDTImpl<org.jooq.test.postgres.g
|
||||
/**
|
||||
* The attribute <code>public.u_address_type.zip</code>.
|
||||
*/
|
||||
public static final org.jooq.UDTField<org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord, java.lang.String> ZIP = createField("zip", org.jooq.impl.SQLDataType.VARCHAR, U_ADDRESS_TYPE);
|
||||
public static final org.jooq.UDTField<org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord, java.lang.String> ZIP = createField("zip", org.jooq.impl.SQLDataType.VARCHAR.length(50), U_ADDRESS_TYPE);
|
||||
|
||||
/**
|
||||
* The attribute <code>public.u_address_type.city</code>.
|
||||
*/
|
||||
public static final org.jooq.UDTField<org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord, java.lang.String> CITY = createField("city", org.jooq.impl.SQLDataType.VARCHAR, U_ADDRESS_TYPE);
|
||||
public static final org.jooq.UDTField<org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord, java.lang.String> CITY = createField("city", org.jooq.impl.SQLDataType.VARCHAR.length(50), U_ADDRESS_TYPE);
|
||||
|
||||
/**
|
||||
* The attribute <code>public.u_address_type.country</code>.
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.udt;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class UStreetType extends org.jooq.impl.UDTImpl<org.jooq.test.postgres.generatedclasses.udt.records.UStreetTypeRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1718447588;
|
||||
private static final long serialVersionUID = 632194932;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.u_street_type</code>
|
||||
@ -27,12 +27,12 @@ public class UStreetType extends org.jooq.impl.UDTImpl<org.jooq.test.postgres.ge
|
||||
/**
|
||||
* The attribute <code>public.u_street_type.street</code>.
|
||||
*/
|
||||
public static final org.jooq.UDTField<org.jooq.test.postgres.generatedclasses.udt.records.UStreetTypeRecord, java.lang.String> STREET = createField("street", org.jooq.impl.SQLDataType.VARCHAR, U_STREET_TYPE);
|
||||
public static final org.jooq.UDTField<org.jooq.test.postgres.generatedclasses.udt.records.UStreetTypeRecord, java.lang.String> STREET = createField("street", org.jooq.impl.SQLDataType.VARCHAR.length(100), U_STREET_TYPE);
|
||||
|
||||
/**
|
||||
* The attribute <code>public.u_street_type.no</code>.
|
||||
*/
|
||||
public static final org.jooq.UDTField<org.jooq.test.postgres.generatedclasses.udt.records.UStreetTypeRecord, java.lang.String> NO = createField("no", org.jooq.impl.SQLDataType.VARCHAR, U_STREET_TYPE);
|
||||
public static final org.jooq.UDTField<org.jooq.test.postgres.generatedclasses.udt.records.UStreetTypeRecord, java.lang.String> NO = createField("no", org.jooq.impl.SQLDataType.VARCHAR.length(30), U_STREET_TYPE);
|
||||
|
||||
/**
|
||||
* The attribute <code>public.u_street_type.floors</code>.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user