updated db schema and fixed unit test missing Segment cleanup after

This commit is contained in:
Jonathan Labreuille
2016-05-27 15:38:24 +02:00
parent b45c70f32b
commit f47c331a5b
2 changed files with 18 additions and 17 deletions

View File

@ -343,6 +343,7 @@ class ImportTest extends MailPoetTest {
function _after() {
ORM::raw_execute('TRUNCATE ' . Subscriber::$_table);
ORM::raw_execute('TRUNCATE ' . Segment::$_table);
ORM::raw_execute('TRUNCATE ' . SubscriberSegment::$_table);
ORM::raw_execute('TRUNCATE ' . SubscriberCustomField::$_table);
}