diff options
Diffstat (limited to 'src/backenddb/drop0001.sql')
-rw-r--r-- | src/backenddb/drop0001.sql | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/backenddb/drop0001.sql b/src/backenddb/drop0001.sql index aec588da..4a028bab 100644 --- a/src/backenddb/drop0001.sql +++ b/src/backenddb/drop0001.sql @@ -1,6 +1,6 @@ -- -- This file is part of TALER --- Copyright (C) 2014--2020 Taler Systems SA +-- Copyright (C) 2014--2021 Taler Systems SA -- -- TALER is free software; you can redistribute it and/or modify it under the -- terms of the GNU General Public License as published by the Free Software @@ -54,5 +54,15 @@ DROP TABLE IF EXISTS merchant_tip_pickup_signatures CASCADE; -- Unregister patch (0001.sql) SELECT _v.unregister_patch('merchant-0001'); +-- Unregister patch (0002.sql) +SELECT _v.unregister_patch('merchant-0002'); + +DROP TABLE IF EXISTS merchant_kyc CASCADE; + +-- Unregister patch (0003.sql) +SELECT _v.unregister_patch('merchant-0003'); + + + -- And we're out of here... COMMIT; |