summaryrefslogtreecommitdiff
path: root/src/auditordb/0002-auditor_row_inconsistency.sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/auditordb/0002-auditor_row_inconsistency.sql')
-rw-r--r--src/auditordb/0002-auditor_row_inconsistency.sql4
1 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 20bf9fd7d..0b1d74a85 100644
--- a/src/auditordb/0002-auditor_row_inconsistency.sql
+++ b/src/auditordb/0002-auditor_row_inconsistency.sql
@@ -18,8 +18,8 @@ SET search_path TO auditor;
CREATE TABLE IF NOT EXISTS auditor_row_inconsistency
(
row_id BIGINT GENERATED BY DEFAULT AS IDENTITY UNIQUE PRIMARY KEY,
- row_table VARCHAR(64),
- diagnostic VARCHAR(64),
+ row_table TEXT,
+ diagnostic TEXT,
suppressed BOOLEAN NOT NULL DEFAULT FALSE
);
COMMENT ON TABLE auditor_row_inconsistency