Store the 'in_progress' flag for workers in a separate column [MAILPOET-2443]

This commit is contained in:
wxa
2019-10-08 16:17:36 +03:00
committed by Jack Kitterhing
parent 6668be4a03
commit f98ed72d83
4 changed files with 9 additions and 8 deletions

View File

@@ -129,6 +129,7 @@ class Migrator {
'created_at timestamp NULL,', // must be NULL, see comment at the top
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
'deleted_at timestamp NULL,',
'in_progress int(1),',
'reschedule_count int(11) NOT NULL DEFAULT 0,',
'meta longtext,',
'PRIMARY KEY (id),',