commit e21cb337ad98d34e9d9c5f364a7f11f66e2c4ba1 parent 8cbf0020ac0a8e66946546e36c4ccba610f845f8 Author: MS <ms@taler.net> Date: Tue, 29 Aug 2023 14:03:02 +0200 SQL syntax Diffstat:
| M | database-versioning/new/sandbox-0001-refactor.sql | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/database-versioning/new/sandbox-0001-refactor.sql b/database-versioning/new/sandbox-0001-refactor.sql @@ -362,13 +362,13 @@ CREATE TABLE IF NOT EXISTS taler_withdrawal_operations ,reserve_pub BYTEA CHECK(length(reserve_pub)=32) NULL ,selected_exchange_payto TEXT ,wallet_bank_account BIGINT NOT NULL - REFERENCES bank_accounts(id) + REFERENCES bank_accounts(bank_account_id) ON DELETE RESTRICT ON UPDATE RESTRICT ); -COMMENT ON COLUMN taler_withdrawals.selection_done +COMMENT ON COLUMN taler_withdrawal_operations.selection_done IS 'Signals whether the wallet specified the exchange and gave the reserve public key'; -COMMENT ON COLUMN taler_withdrawals.confirmation_done +COMMENT ON COLUMN taler_withdrawal_operations.confirmation_done IS 'Signals whether the payment to the exchange took place'; -- end of: Taler integration