summaryrefslogtreecommitdiff
path: root/src/auditordb/auditor-0001.sql
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-07-30 14:02:40 +0200
committerChristian Grothoff <christian@grothoff.org>2023-07-30 14:02:40 +0200
commita29f04189c8b7457ede0b3ac01222b88853325a8 (patch)
treec00400029ee53863481c2e30ffea5c275685733c /src/auditordb/auditor-0001.sql
parentafa706914fefc90812c0bda01341e1dcfca06840 (diff)
downloadexchange-a29f04189c8b7457ede0b3ac01222b88853325a8.tar.gz
exchange-a29f04189c8b7457ede0b3ac01222b88853325a8.tar.bz2
exchange-a29f04189c8b7457ede0b3ac01222b88853325a8.zip
unify to TEXT instead of mixing TEXT and VARCHAR
Diffstat (limited to 'src/auditordb/auditor-0001.sql')
-rw-r--r--src/auditordb/auditor-0001.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auditordb/auditor-0001.sql b/src/auditordb/auditor-0001.sql
index f397f0569..c5c037c31 100644
--- a/src/auditordb/auditor-0001.sql
+++ b/src/auditordb/auditor-0001.sql
@@ -36,7 +36,7 @@ COMMENT ON TYPE taler_amount
CREATE TABLE IF NOT EXISTS auditor_exchanges
(master_pub BYTEA PRIMARY KEY CHECK (LENGTH(master_pub)=32)
- ,exchange_url VARCHAR NOT NULL
+ ,exchange_url TEXT NOT NULL
);
COMMENT ON TABLE auditor_exchanges
IS 'list of the exchanges we are auditing';