diff --git a/.gitignore b/.gitignore index 37f3443..61a9a78 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .gradle/** **/build/** -.idea/** \ No newline at end of file +.idea/** +**/.DS_Store \ No newline at end of file diff --git a/api/src/main/resources/static/css/chunk-3bf24d18.e722c805.css b/api/src/main/resources/static/css/chunk-4935816e.e722c805.css similarity index 100% rename from api/src/main/resources/static/css/chunk-3bf24d18.e722c805.css rename to api/src/main/resources/static/css/chunk-4935816e.e722c805.css diff --git a/api/src/main/resources/static/index.html b/api/src/main/resources/static/index.html index 2af0ced..8b5d639 100644 --- a/api/src/main/resources/static/index.html +++ b/api/src/main/resources/static/index.html @@ -1 +1 @@ -
databasir.table_column_document.is_primary_key
.
+ */
+ public final TableFielddatabasir.table_column_document.nullable
. YES,
* NO, UNKNOWN
@@ -197,11 +202,11 @@ public class TableColumnDocument extends TableImpldatabasir.table_index_document.is_primary
.
- */
- public final TableFielddatabasir.table_index_document.is_unique
.
*/
@@ -175,11 +170,11 @@ public class TableIndexDocument extends TableImpldatabasir.table_column_document.is_primary_key
.
+ */
+ public Boolean getIsPrimaryKey() {
+ return this.isPrimaryKey;
+ }
+
+ /**
+ * Setter for databasir.table_column_document.is_primary_key
.
+ */
+ public void setIsPrimaryKey(Boolean isPrimaryKey) {
+ this.isPrimaryKey = isPrimaryKey;
+ }
+
/**
* Getter for databasir.table_column_document.nullable
. YES,
* NO, UNKNOWN
@@ -263,6 +281,7 @@ public class TableColumnDocumentPojo implements Serializable {
sb.append(", ").append(defaultValue);
sb.append(", ").append(size);
sb.append(", ").append(decimalDigits);
+ sb.append(", ").append(isPrimaryKey);
sb.append(", ").append(nullable);
sb.append(", ").append(autoIncrement);
sb.append(", ").append(createAt);
diff --git a/dao/generated-src/jooq/main/java/com/databasir/dao/tables/pojos/TableIndexDocumentPojo.java b/dao/generated-src/jooq/main/java/com/databasir/dao/tables/pojos/TableIndexDocumentPojo.java
index 7fd02b8..ceb0fb4 100644
--- a/dao/generated-src/jooq/main/java/com/databasir/dao/tables/pojos/TableIndexDocumentPojo.java
+++ b/dao/generated-src/jooq/main/java/com/databasir/dao/tables/pojos/TableIndexDocumentPojo.java
@@ -22,7 +22,6 @@ public class TableIndexDocumentPojo implements Serializable {
private Integer tableDocumentId;
private Integer databaseDocumentId;
private String name;
- private Boolean isPrimary;
private Boolean isUnique;
private JSON columnNameArray;
private LocalDateTime createAt;
@@ -34,7 +33,6 @@ public class TableIndexDocumentPojo implements Serializable {
this.tableDocumentId = value.tableDocumentId;
this.databaseDocumentId = value.databaseDocumentId;
this.name = value.name;
- this.isPrimary = value.isPrimary;
this.isUnique = value.isUnique;
this.columnNameArray = value.columnNameArray;
this.createAt = value.createAt;
@@ -45,7 +43,6 @@ public class TableIndexDocumentPojo implements Serializable {
Integer tableDocumentId,
Integer databaseDocumentId,
String name,
- Boolean isPrimary,
Boolean isUnique,
JSON columnNameArray,
LocalDateTime createAt
@@ -54,7 +51,6 @@ public class TableIndexDocumentPojo implements Serializable {
this.tableDocumentId = tableDocumentId;
this.databaseDocumentId = databaseDocumentId;
this.name = name;
- this.isPrimary = isPrimary;
this.isUnique = isUnique;
this.columnNameArray = columnNameArray;
this.createAt = createAt;
@@ -118,20 +114,6 @@ public class TableIndexDocumentPojo implements Serializable {
this.name = name;
}
- /**
- * Getter for databasir.table_index_document.is_primary
.
- */
- public Boolean getIsPrimary() {
- return this.isPrimary;
- }
-
- /**
- * Setter for databasir.table_index_document.is_primary
.
- */
- public void setIsPrimary(Boolean isPrimary) {
- this.isPrimary = isPrimary;
- }
-
/**
* Getter for databasir.table_index_document.is_unique
.
*/
@@ -182,7 +164,6 @@ public class TableIndexDocumentPojo implements Serializable {
sb.append(", ").append(tableDocumentId);
sb.append(", ").append(databaseDocumentId);
sb.append(", ").append(name);
- sb.append(", ").append(isPrimary);
sb.append(", ").append(isUnique);
sb.append(", ").append(columnNameArray);
sb.append(", ").append(createAt);
diff --git a/dao/generated-src/jooq/main/java/com/databasir/dao/tables/records/TableColumnDocumentRecord.java b/dao/generated-src/jooq/main/java/com/databasir/dao/tables/records/TableColumnDocumentRecord.java
index 9a87151..84f8972 100644
--- a/dao/generated-src/jooq/main/java/com/databasir/dao/tables/records/TableColumnDocumentRecord.java
+++ b/dao/generated-src/jooq/main/java/com/databasir/dao/tables/records/TableColumnDocumentRecord.java
@@ -11,8 +11,8 @@ import java.time.LocalDateTime;
import org.jooq.Field;
import org.jooq.Record1;
-import org.jooq.Record12;
-import org.jooq.Row12;
+import org.jooq.Record13;
+import org.jooq.Row13;
import org.jooq.impl.UpdatableRecordImpl;
@@ -20,7 +20,7 @@ import org.jooq.impl.UpdatableRecordImpl;
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
-public class TableColumnDocumentRecord extends UpdatableRecordImpldatabasir.table_column_document.is_primary_key
.
+ */
+ public Boolean getIsPrimaryKey() {
+ return (Boolean) get(9);
+ }
+
/**
* Setter for databasir.table_column_document.nullable
. YES,
* NO, UNKNOWN
*/
public void setNullable(String value) {
- set(9, value);
+ set(10, value);
}
/**
@@ -167,7 +181,7 @@ public class TableColumnDocumentRecord extends UpdatableRecordImpldatabasir.table_column_document.create_at
.
*/
public LocalDateTime getCreateAt() {
- return (LocalDateTime) get(11);
+ return (LocalDateTime) get(12);
}
// -------------------------------------------------------------------------
@@ -210,17 +224,17 @@ public class TableColumnDocumentRecord extends UpdatableRecordImpldatabasir.table_index_document.is_primary
.
- */
- public Boolean getIsPrimary() {
- return (Boolean) get(4);
- }
-
/**
* Setter for databasir.table_index_document.is_unique
.
*/
public void setIsUnique(Boolean value) {
- set(5, value);
+ set(4, value);
}
/**
* Getter for databasir.table_index_document.is_unique
.
*/
public Boolean getIsUnique() {
- return (Boolean) get(5);
+ return (Boolean) get(4);
}
/**
* Setter for databasir.table_index_document.column_name_array
.
*/
public void setColumnNameArray(JSON value) {
- set(6, value);
+ set(5, value);
}
/**
* Getter for databasir.table_index_document.column_name_array
.
*/
public JSON getColumnNameArray() {
- return (JSON) get(6);
+ return (JSON) get(5);
}
/**
* Setter for databasir.table_index_document.create_at
.
*/
public void setCreateAt(LocalDateTime value) {
- set(7, value);
+ set(6, value);
}
/**
* Getter for databasir.table_index_document.create_at
.
*/
public LocalDateTime getCreateAt() {
- return (LocalDateTime) get(7);
+ return (LocalDateTime) get(6);
}
// -------------------------------------------------------------------------
@@ -149,17 +135,17 @@ public class TableIndexDocumentRecord extends UpdatableRecordImpl