diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-05-16 11:14:44 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-05-19 01:16:34 +0200 |
commit | 3355509eda1dc34885401ff6b58b91985b2d05b3 (patch) | |
tree | 3d161a1c3e5b11c881b5213273195f5ed7c229e1 | |
parent | 9e057983308ae23b2045a34957aec52b3a447296 (diff) | |
download | exchange-3355509eda1dc34885401ff6b58b91985b2d05b3.tar.gz exchange-3355509eda1dc34885401ff6b58b91985b2d05b3.zip |
use unregister
-rw-r--r-- | src/exchangedb/drop0001.sql | 4 | ||||
-rw-r--r-- | src/include/taler_bank_service.h | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/exchangedb/drop0001.sql b/src/exchangedb/drop0001.sql index f0f46a611..7ffa7554c 100644 --- a/src/exchangedb/drop0001.sql +++ b/src/exchangedb/drop0001.sql | |||
@@ -43,8 +43,8 @@ DROP TABLE IF EXISTS reserves CASCADE; | |||
43 | DROP TABLE IF EXISTS denomination_revocations CASCADE; | 43 | DROP TABLE IF EXISTS denomination_revocations CASCADE; |
44 | DROP TABLE IF EXISTS denominations CASCADE; | 44 | DROP TABLE IF EXISTS denominations CASCADE; |
45 | 45 | ||
46 | -- Drop versioning (0000.sql) | 46 | -- Unregister patch (0001.sql) |
47 | DROP SCHEMA IF EXISTS _v CASCADE; | 47 | SELECT _v.unregister_patch('exchange-0001', NULL, NULL); |
48 | 48 | ||
49 | -- And we're out of here... | 49 | -- And we're out of here... |
50 | COMMIT; | 50 | COMMIT; |
diff --git a/src/include/taler_bank_service.h b/src/include/taler_bank_service.h index 0212e61f1..c5d0e5cac 100644 --- a/src/include/taler_bank_service.h +++ b/src/include/taler_bank_service.h | |||
@@ -384,16 +384,16 @@ struct TALER_BANK_DebitDetails | |||
384 | const char *exchange_base_url; | 384 | const char *exchange_base_url; |
385 | 385 | ||
386 | /** | 386 | /** |
387 | * payto://-URL of the source account that | 387 | * payto://-URI of the source account that |
388 | * send the funds. | 388 | * send the funds. |
389 | */ | 389 | */ |
390 | const char *debit_account_url; | 390 | const char *debit_account_url; // FIXME: rename: url->uri |
391 | 391 | ||
392 | /** | 392 | /** |
393 | * payto://-URL of the target account that | 393 | * payto://-URI of the target account that |
394 | * received the funds. | 394 | * received the funds. |
395 | */ | 395 | */ |
396 | const char *credit_account_url; | 396 | const char *credit_account_url; // FIXME: rename: url->uri |
397 | 397 | ||
398 | }; | 398 | }; |
399 | 399 | ||