Shorten automation table names

[MAILPOET-4465]
This commit is contained in:
Jan Jakes
2022-07-05 12:39:51 +02:00
committed by Veljko V
parent 43003a0a2e
commit a073f05ffe
3 changed files with 13 additions and 4 deletions

View File

@ -22,7 +22,7 @@ class WorkflowRunStorage {
SubjectLoader $subjectLoader
) {
global $wpdb;
$this->table = $wpdb->prefix . 'mailpoet_automation_workflow_runs';
$this->table = $wpdb->prefix . 'mailpoet_workflow_runs';
$this->wpdb = $wpdb;
$this->subjectLoader = $subjectLoader;
}