diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-09-29 17:21:51 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-09-29 17:22:13 +0200 |
commit | e370b3dc87590fc0ebd6c431a13a68cabb39aab6 (patch) | |
tree | d5607be81a9d6aa2d88d3c8966e5ca1afa161a3a /src/auditordb | |
parent | 74c56c62f0d5b7651e0fb76bc8f21844b0c60f46 (diff) |
fix search path
Diffstat (limited to 'src/auditordb')
-rw-r--r-- | src/auditordb/auditor-0002.sql.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/auditordb/auditor-0002.sql.in b/src/auditordb/auditor-0002.sql.in index 75b6991ce..ab0db2fb8 100644 --- a/src/auditordb/auditor-0002.sql.in +++ b/src/auditordb/auditor-0002.sql.in @@ -16,8 +16,13 @@ BEGIN; +-- move later into auditor-0001.sql +CREATE SCHEMA IF NOT EXISTS auditor; +COMMENT ON SCHEMA auditor IS 'taler-auditor data'; + + SELECT _v.register_patch('auditor-0002', NULL, NULL); -SET search_path TO auditordb; +SET search_path TO auditor; CREATE TYPE taler_amount AS |