summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNic Eigel <nic@eigel.ch>2024-03-14 16:10:28 +0100
committerCedric Zwahlen <cedric.zwahlen@students.bfh.ch>2024-04-19 20:47:25 +0200
commit75ec974ec9ae3f02c293f565015362a3a79c97fe (patch)
treefd2f63fc1bc3f28c8614051891d5be453787c4ee
parent092be34962a2925be1957624bac39db4db79270b (diff)
downloadexchange-75ec974ec9ae3f02c293f565015362a3a79c97fe.tar.gz
exchange-75ec974ec9ae3f02c293f565015362a3a79c97fe.tar.bz2
exchange-75ec974ec9ae3f02c293f565015362a3a79c97fe.zip
fixing keywords
-rw-r--r--src/auditordb/0002-auditor_row_inconsistency.sql2
-rw-r--r--src/auditordb/0002-auditor_row_minor_inconsistencies.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/auditordb/0002-auditor_row_inconsistency.sql b/src/auditordb/0002-auditor_row_inconsistency.sql
index ece2e5661..c3a406b95 100644
--- a/src/auditordb/0002-auditor_row_inconsistency.sql
+++ b/src/auditordb/0002-auditor_row_inconsistency.sql
@@ -18,7 +18,7 @@ SET search_path TO auditor;
CREATE TABLE IF NOT EXISTS auditor_row_inconsistency
(
row_id BIGINT GENERATED BY DEFAULT AS IDENTITY UNIQUE PRIMARY KEY,
- table BYTEA,
+ row_table BYTEA,
diagnostic BYTEA
);
COMMENT ON TABLE auditor_row_inconsistency
diff --git a/src/auditordb/0002-auditor_row_minor_inconsistencies.sql b/src/auditordb/0002-auditor_row_minor_inconsistencies.sql
index 7836037c7..100043a27 100644
--- a/src/auditordb/0002-auditor_row_minor_inconsistencies.sql
+++ b/src/auditordb/0002-auditor_row_minor_inconsistencies.sql
@@ -18,7 +18,7 @@ SET search_path TO auditor;
CREATE TABLE IF NOT EXISTS auditor_row_minor_inconsistency
(
row_id BIGINT GENERATED BY DEFAULT AS IDENTITY UNIQUE PRIMARY KEY,
- table BYTEA,
+ row_table BYTEA,
diagnostic BYTEA
);
COMMENT ON TABLE auditor_row_minor_inconsistency