TheDMSGroup / mautic-contact-client

Create custom integrations without writing code, like having your own Zapier.
GNU General Public License v3.0
95 stars 33 forks source link

[ENG-541] Create campaign and event id columns on stats and log #144

Closed scottshipman closed 6 years ago

scottshipman commented 6 years ago

Will need to run these SQL on the Deploy first

ALTER TABLE contactclient_stats ADD campaign_id INT NOT NULL, ADD event_id INT NOT NULL;
CREATE INDEX campaign_id_date_added ON contactclient_stats (campaign_id, date_added);