From bb3a7f40b6af372b4c38a54bdbd2fd5a3dec1b92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Fri, 9 Feb 2024 13:57:35 +0000 Subject: [PATCH] fixed SQL type for epoch_id --- .../migrations/20240206120000_add_credential_types.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/credential-storage/migrations/20240206120000_add_credential_types.sql b/common/credential-storage/migrations/20240206120000_add_credential_types.sql index a75acca881..696d6d46a4 100644 --- a/common/credential-storage/migrations/20240206120000_add_credential_types.sql +++ b/common/credential-storage/migrations/20240206120000_add_credential_types.sql @@ -12,6 +12,6 @@ CREATE TABLE coconut_credentials serialization_revision INTEGER NOT NULL, credential_type TEXT NOT NULL, credential_data BLOB NOT NULL, - epoch_id TEXT NOT NULL, + epoch_id INTEGER NOT NULL, consumed BOOLEAN NOT NULL ); \ No newline at end of file