From 186001a4e0303ef5e79fa0203d32a5e953cd2c94 Mon Sep 17 00:00:00 2001 From: Dario Rekowski on RockPI Date: Fri, 16 Apr 2021 14:47:40 +0000 Subject: [PATCH] to prevent data loss if upgrading older table --- .../skeema/gradido_community/transaction_send_coins.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/community_server/skeema/gradido_community/transaction_send_coins.sql b/community_server/skeema/gradido_community/transaction_send_coins.sql index 49423fdbc..f6ab21de1 100644 --- a/community_server/skeema/gradido_community/transaction_send_coins.sql +++ b/community_server/skeema/gradido_community/transaction_send_coins.sql @@ -1,6 +1,7 @@ CREATE TABLE `transaction_send_coins` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `transaction_id` int(10) unsigned NOT NULL, + `public_key` binary(32) NOT NULL, `sender_public_key` binary(32) NOT NULL, `state_user_id` int(10) unsigned DEFAULT 0, `receiver_public_key` binary(32) NOT NULL,