From 6cc3910da04cf6b4ae717f0f1160662021b1eb7b Mon Sep 17 00:00:00 2001 From: Dario via Pythagoras Date: Thu, 11 Jun 2020 15:18:44 +0200 Subject: [PATCH] add default --- skeema/gradido_community/transactions.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skeema/gradido_community/transactions.sql b/skeema/gradido_community/transactions.sql index ad1c960de..392ea2e5e 100644 --- a/skeema/gradido_community/transactions.sql +++ b/skeema/gradido_community/transactions.sql @@ -2,7 +2,7 @@ CREATE TABLE `transactions` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `state_group_id` int(11) DEFAULT NULL, `transaction_type_id` int(11) NOT NULL, - `tx_hash` binary(32) NOT NULL, + `tx_hash` binary(32) DEFAULT NULL, `memo` varchar(255) COLLATE utf8_bin NOT NULL, `received` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`)