From 9172b7e990dc532fe4221be0dc3c97f67bcdbe9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Jakes=CC=8C?= Date: Thu, 16 May 2019 14:00:07 +0200 Subject: [PATCH] Use shorter feature name due to index length limitations [MAILPOET-2008] --- lib/Config/Migrator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Config/Migrator.php b/lib/Config/Migrator.php index 14386999f6..b9561978af 100644 --- a/lib/Config/Migrator.php +++ b/lib/Config/Migrator.php @@ -517,7 +517,7 @@ class Migrator { function featureFlags() { $attributes = array( 'id int(11) unsigned NOT NULL AUTO_INCREMENT,', - 'name varchar(255) NOT NULL,', + 'name varchar(100) NOT NULL,', 'value tinyint(1),', 'created_at timestamp NULL,', // must be NULL, see comment at the top 'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',