From 97ca09d7dd50a93b7d2b4287f1872896704f7787 Mon Sep 17 00:00:00 2001 From: netkas Date: Tue, 25 Mar 2025 12:58:48 -0400 Subject: [PATCH] Increase signature_key length in contact_known_keys.sql to accommodate larger keys --- src/Socialbox/Classes/Resources/database/contact_known_keys.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Socialbox/Classes/Resources/database/contact_known_keys.sql b/src/Socialbox/Classes/Resources/database/contact_known_keys.sql index 164dc48..9692326 100644 --- a/src/Socialbox/Classes/Resources/database/contact_known_keys.sql +++ b/src/Socialbox/Classes/Resources/database/contact_known_keys.sql @@ -3,7 +3,7 @@ create table contacts_known_keys contact_uuid varchar(36) not null comment 'The Unique Universal Identifier of the personal contact that this record is associated with', signature_uuid varchar(36) not null comment 'The Unique Universal Identifier for the signature key', signature_name varchar(64) not null comment 'The name of the signing key', - signature_key varchar(32) not null comment 'The public signing key', + signature_key varchar(64) not null comment 'The public signing key', expires timestamp null comment 'The Timestamp for when this key expires, null means never', created timestamp not null comment 'The Timestamp for when this key was created', trusted_on timestamp default current_timestamp() not null comment 'The Timestamp for when the peer trusted this key',