From c1f09dd7b9a9b10ae98fc4d0c16c1c804d57d37e Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Tue, 24 Oct 2023 22:23:39 +0300 Subject: [PATCH] source key size must not exceed 1022 --- app/config/schema/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/schema/schema.json b/app/config/schema/schema.json index 76c8f8f0c..ba50b9212 100644 --- a/app/config/schema/schema.json +++ b/app/config/schema/schema.json @@ -650,7 +650,7 @@ "columns": { "id": {}, "external_identity_source_id": { "type": "integer", "foreignkey": { "table": "external_identity_sources", "column": "id" }, "notnull": true }, - "source_key": { "type": "string", "size": 1024 }, + "source_key": { "type": "string", "size": 1022 }, "source_record": { "type": "text" }, "last_update": { "type": "datetime" }, "external_identity_id": {},