use unregister

This commit is contained in:
Christian Grothoff 2020-05-16 11:14:44 +02:00
parent 9e05798330
commit 3355509eda
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 6 additions and 6 deletions

View File

@ -43,8 +43,8 @@ DROP TABLE IF EXISTS reserves CASCADE;
DROP TABLE IF EXISTS denomination_revocations CASCADE; DROP TABLE IF EXISTS denomination_revocations CASCADE;
DROP TABLE IF EXISTS denominations CASCADE; DROP TABLE IF EXISTS denominations CASCADE;
-- Drop versioning (0000.sql) -- Unregister patch (0001.sql)
DROP SCHEMA IF EXISTS _v CASCADE; SELECT _v.unregister_patch('exchange-0001', NULL, NULL);
-- And we're out of here... -- And we're out of here...
COMMIT; COMMIT;

View File

@ -384,16 +384,16 @@ struct TALER_BANK_DebitDetails
const char *exchange_base_url; const char *exchange_base_url;
/** /**
* payto://-URL of the source account that * payto://-URI of the source account that
* send the funds. * send the funds.
*/ */
const char *debit_account_url; const char *debit_account_url; // FIXME: rename: url->uri
/** /**
* payto://-URL of the target account that * payto://-URI of the target account that
* received the funds. * received the funds.
*/ */
const char *credit_account_url; const char *credit_account_url; // FIXME: rename: url->uri
}; };