From deae8bad3bdc582f428a1017cf2a9819ba794d83 Mon Sep 17 00:00:00 2001 From: iglocska Date: Thu, 16 May 2024 10:05:24 +0200 Subject: [PATCH] fix: [encryption keys] allow for large keys - @adulau has a massive... key. --- .../20240516000003_MonsterKeySupport.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 config/Migrations/20240516000003_MonsterKeySupport.php diff --git a/config/Migrations/20240516000003_MonsterKeySupport.php b/config/Migrations/20240516000003_MonsterKeySupport.php new file mode 100644 index 0000000..af8cba0 --- /dev/null +++ b/config/Migrations/20240516000003_MonsterKeySupport.php @@ -0,0 +1,30 @@ +table('encryption_keys') + ->changeColumn('encryption_key', 'text', [ + 'limit' => MysqlAdapter::TEXT_MEDIUM + ]) + ->update(); + } +}