Regenerated SQLite schema
This commit is contained in:
parent
049977600d
commit
f194a29d95
@ -0,0 +1,51 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.test.sqlite.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class DefaultSchema extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = -1700163586;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code></code>
|
||||
*/
|
||||
public static final DefaultSchema DEFAULT_SCHEMA = new DefaultSchema();
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private DefaultSchema() {
|
||||
super("");
|
||||
}
|
||||
|
||||
@Override
|
||||
public final java.util.List<org.jooq.Table<?>> getTables() {
|
||||
return java.util.Arrays.<org.jooq.Table<?>>asList(
|
||||
org.jooq.test.sqlite.generatedclasses.tables.VLibrary.V_LIBRARY,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.T_639NumbersTable.T_639_NUMBERS_TABLE,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.T_725LobTest.T_725_LOB_TEST,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.T_785.T_785,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.T_986_1.T_986_1,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.T_986_2.T_986_2,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.TAuthor.T_AUTHOR,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.TBook.T_BOOK,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.TBookStore.T_BOOK_STORE,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.TBooleans.T_BOOLEANS,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.TDates.T_DATES,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.TLanguage.T_LANGUAGE,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.TTriggers.T_TRIGGERS,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.VAuthor.V_AUTHOR,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.VBook.V_BOOK,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.XTestCase_2025.X_TEST_CASE_2025,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85,
|
||||
org.jooq.test.sqlite.generatedclasses.tables.XUnused.X_UNUSED);
|
||||
}
|
||||
}
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -771316680;
|
||||
private static final long serialVersionUID = -1728221493;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_author</code>
|
||||
@ -58,7 +58,7 @@ public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqli
|
||||
* No further instances allowed
|
||||
*/
|
||||
private TAuthor() {
|
||||
super("t_author");
|
||||
super("t_author", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1784331633;
|
||||
private static final long serialVersionUID = 1727862334;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_book</code>
|
||||
@ -73,7 +73,7 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite
|
||||
* No further instances allowed
|
||||
*/
|
||||
private TBook() {
|
||||
super("t_book");
|
||||
super("t_book", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = -823260076;
|
||||
private static final long serialVersionUID = -1694538975;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_book_store</code>
|
||||
@ -33,7 +33,7 @@ public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.s
|
||||
* No further instances allowed
|
||||
*/
|
||||
private TBookStore() {
|
||||
super("t_book_store");
|
||||
super("t_book_store", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1359257272;
|
||||
private static final long serialVersionUID = 1692105237;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_book_to_book_store</code>
|
||||
@ -43,7 +43,7 @@ public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.
|
||||
* No further instances allowed
|
||||
*/
|
||||
private TBookToBookStore() {
|
||||
super("t_book_to_book_store");
|
||||
super("t_book_to_book_store", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.TBooleansRecord> {
|
||||
|
||||
private static final long serialVersionUID = -472459184;
|
||||
private static final long serialVersionUID = 595933987;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_booleans</code>
|
||||
@ -83,7 +83,7 @@ public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sq
|
||||
* No further instances allowed
|
||||
*/
|
||||
private TBooleans() {
|
||||
super("t_booleans");
|
||||
super("t_booleans", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.TDatesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 950406246;
|
||||
private static final long serialVersionUID = 618851059;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_dates</code>
|
||||
@ -58,7 +58,7 @@ public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlit
|
||||
* No further instances allowed
|
||||
*/
|
||||
private TDates() {
|
||||
super("t_dates");
|
||||
super("t_dates", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.TLanguageRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1308307264;
|
||||
private static final long serialVersionUID = -2092951917;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_language</code>
|
||||
@ -48,7 +48,7 @@ public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sq
|
||||
* No further instances allowed
|
||||
*/
|
||||
private TLanguage() {
|
||||
super("t_language");
|
||||
super("t_language", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.TTriggersRecord> {
|
||||
|
||||
private static final long serialVersionUID = 476407094;
|
||||
private static final long serialVersionUID = -262484221;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_triggers</code>
|
||||
@ -43,7 +43,7 @@ public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sq
|
||||
* No further instances allowed
|
||||
*/
|
||||
private TTriggers() {
|
||||
super("t_triggers");
|
||||
super("t_triggers", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.T_639NumbersTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1435501130;
|
||||
private static final long serialVersionUID = -1945389367;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_639_numbers_table</code>
|
||||
@ -93,7 +93,7 @@ public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq
|
||||
* No further instances allowed
|
||||
*/
|
||||
private T_639NumbersTable() {
|
||||
super("t_639_numbers_table");
|
||||
super("t_639_numbers_table", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.T_725LobTestRecord> {
|
||||
|
||||
private static final long serialVersionUID = -559148120;
|
||||
private static final long serialVersionUID = 526534069;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_725_lob_test</code>
|
||||
@ -38,7 +38,7 @@ public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
* No further instances allowed
|
||||
*/
|
||||
private T_725LobTest() {
|
||||
super("t_725_lob_test");
|
||||
super("t_725_lob_test", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.T_785Record> {
|
||||
|
||||
private static final long serialVersionUID = -59272342;
|
||||
private static final long serialVersionUID = 1789838973;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_785</code>
|
||||
@ -43,6 +43,6 @@ public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.sqlite.generate
|
||||
* No further instances allowed
|
||||
*/
|
||||
private T_785() {
|
||||
super("t_785");
|
||||
super("t_785", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_986_1 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.T_986_1Record> {
|
||||
|
||||
private static final long serialVersionUID = -1203662956;
|
||||
private static final long serialVersionUID = 942723367;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_986_1</code>
|
||||
@ -33,7 +33,7 @@ public class T_986_1 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqli
|
||||
* No further instances allowed
|
||||
*/
|
||||
private T_986_1() {
|
||||
super("t_986_1");
|
||||
super("t_986_1", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_986_2 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.T_986_2Record> {
|
||||
|
||||
private static final long serialVersionUID = -1893300651;
|
||||
private static final long serialVersionUID = 1450129256;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>t_986_2</code>
|
||||
@ -33,7 +33,7 @@ public class T_986_2 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqli
|
||||
* No further instances allowed
|
||||
*/
|
||||
private T_986_2() {
|
||||
super("t_986_2");
|
||||
super("t_986_2", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.VAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -331902585;
|
||||
private static final long serialVersionUID = 764216858;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>v_author</code>
|
||||
@ -58,6 +58,6 @@ public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.sqlite.genera
|
||||
* No further instances allowed
|
||||
*/
|
||||
private VAuthor() {
|
||||
super("v_author");
|
||||
super("v_author", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.VBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 156390084;
|
||||
private static final long serialVersionUID = 1531345111;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>v_book</code>
|
||||
@ -73,6 +73,6 @@ public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.sqlite.generate
|
||||
* No further instances allowed
|
||||
*/
|
||||
private VBook() {
|
||||
super("v_book");
|
||||
super("v_book", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.VLibraryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1040605435;
|
||||
private static final long serialVersionUID = 750597272;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>V_LIBRARY</code>
|
||||
@ -38,6 +38,6 @@ public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.sqlite.gener
|
||||
* No further instances allowed
|
||||
*/
|
||||
private VLibrary() {
|
||||
super("V_LIBRARY");
|
||||
super("V_LIBRARY", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_2025 extends org.jooq.impl.TableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.XTestCase_2025Record> {
|
||||
|
||||
private static final long serialVersionUID = -989197290;
|
||||
private static final long serialVersionUID = 1589841763;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>x_test_case_2025</code>
|
||||
@ -38,7 +38,7 @@ public class XTestCase_2025 extends org.jooq.impl.TableImpl<org.jooq.test.sqlite
|
||||
* No further instances allowed
|
||||
*/
|
||||
private XTestCase_2025() {
|
||||
super("x_test_case_2025");
|
||||
super("x_test_case_2025", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.XTestCase_64_69Record> {
|
||||
|
||||
private static final long serialVersionUID = 1015702086;
|
||||
private static final long serialVersionUID = 922452441;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>x_test_case_64_69</code>
|
||||
@ -38,7 +38,7 @@ public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.t
|
||||
* No further instances allowed
|
||||
*/
|
||||
private XTestCase_64_69() {
|
||||
super("x_test_case_64_69");
|
||||
super("x_test_case_64_69", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.XTestCase_71Record> {
|
||||
|
||||
private static final long serialVersionUID = 1898368696;
|
||||
private static final long serialVersionUID = -1085782779;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>x_test_case_71</code>
|
||||
@ -38,7 +38,7 @@ public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
* No further instances allowed
|
||||
*/
|
||||
private XTestCase_71() {
|
||||
super("x_test_case_71");
|
||||
super("x_test_case_71", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.XTestCase_85Record> {
|
||||
|
||||
private static final long serialVersionUID = 1078570612;
|
||||
private static final long serialVersionUID = -1999897209;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>x_test_case_85</code>
|
||||
@ -43,7 +43,7 @@ public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
* No further instances allowed
|
||||
*/
|
||||
private XTestCase_85() {
|
||||
super("x_test_case_85");
|
||||
super("x_test_case_85", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.sqlite.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqlite.generatedclasses.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1440511778;
|
||||
private static final long serialVersionUID = -320664783;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>x_unused</code>
|
||||
@ -98,7 +98,7 @@ public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sqli
|
||||
* No further instances allowed
|
||||
*/
|
||||
private XUnused() {
|
||||
super("x_unused");
|
||||
super("x_unused", org.jooq.test.sqlite.generatedclasses.DefaultSchema.DEFAULT_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user