Modify stats tables indexes for faster fetching in emails listing
[MAILPOET-2213]
This commit is contained in:
committed by
M. Shull
parent
d285fdba1d
commit
10e71426aa
@ -413,7 +413,7 @@ class Migrator {
|
|||||||
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
||||||
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
||||||
'PRIMARY KEY (id),',
|
'PRIMARY KEY (id),',
|
||||||
'KEY newsletter_id (newsletter_id),',
|
'KEY newsletter_id_subscriber_id (newsletter_id, subscriber_id),',
|
||||||
'KEY queue_id (queue_id),',
|
'KEY queue_id (queue_id),',
|
||||||
'KEY subscriber_id (subscriber_id)',
|
'KEY subscriber_id (subscriber_id)',
|
||||||
];
|
];
|
||||||
@ -428,7 +428,7 @@ class Migrator {
|
|||||||
'queue_id int(11) unsigned NOT NULL,',
|
'queue_id int(11) unsigned NOT NULL,',
|
||||||
'created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,',
|
'created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,',
|
||||||
'PRIMARY KEY (id),',
|
'PRIMARY KEY (id),',
|
||||||
'KEY newsletter_id (newsletter_id),',
|
'KEY newsletter_id_subscriber_id (newsletter_id, subscriber_id),',
|
||||||
'KEY queue_id (queue_id),',
|
'KEY queue_id (queue_id),',
|
||||||
'KEY subscriber_id (subscriber_id),',
|
'KEY subscriber_id (subscriber_id),',
|
||||||
'KEY created_at (created_at)',
|
'KEY created_at (created_at)',
|
||||||
@ -444,7 +444,7 @@ class Migrator {
|
|||||||
'queue_id int(11) unsigned NOT NULL,',
|
'queue_id int(11) unsigned NOT NULL,',
|
||||||
'created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,',
|
'created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,',
|
||||||
'PRIMARY KEY (id),',
|
'PRIMARY KEY (id),',
|
||||||
'KEY newsletter_id (newsletter_id),',
|
'KEY newsletter_id_subscriber_id (newsletter_id, subscriber_id),',
|
||||||
'KEY queue_id (queue_id),',
|
'KEY queue_id (queue_id),',
|
||||||
'KEY subscriber_id (subscriber_id)',
|
'KEY subscriber_id (subscriber_id)',
|
||||||
];
|
];
|
||||||
|
Reference in New Issue
Block a user