From 193b9ae32d4a47d44fb58e769366e421732bccac Mon Sep 17 00:00:00 2001 From: David Remer Date: Wed, 5 Oct 2022 09:43:29 +0300 Subject: [PATCH] Index status column of workflow runs [MAILPOET-4673] --- mailpoet/lib/Automation/Engine/Migrations/Migrator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mailpoet/lib/Automation/Engine/Migrations/Migrator.php b/mailpoet/lib/Automation/Engine/Migrations/Migrator.php index f1b78bb791..d8347fde32 100644 --- a/mailpoet/lib/Automation/Engine/Migrations/Migrator.php +++ b/mailpoet/lib/Automation/Engine/Migrations/Migrator.php @@ -58,7 +58,8 @@ class Migrator { created_at timestamp NOT NULL, updated_at timestamp NOT NULL, subjects longtext, - PRIMARY KEY (id) + PRIMARY KEY (id), + INDEX (status) ); ");