Import the MP2 users lists

Import the MP2 users
Add the table "imported_data_mapping"
Add the function Helpers::mysql_date
This commit is contained in:
fred
2017-04-26 11:22:56 +02:00
parent 37a9fd9e1b
commit 472be3b071
7 changed files with 508 additions and 23 deletions

View File

@@ -77,6 +77,7 @@ class Database {
$statistics_opens = Env::$db_prefix . 'statistics_opens';
$statistics_unsubscribes = Env::$db_prefix . 'statistics_unsubscribes';
$statistics_forms = Env::$db_prefix . 'statistics_forms';
$imported_data_mapping = Env::$db_prefix . 'imported_data_mapping';
define('MP_SETTINGS_TABLE', $settings);
define('MP_SEGMENTS_TABLE', $segments);
@@ -98,6 +99,7 @@ class Database {
define('MP_STATISTICS_OPENS_TABLE', $statistics_opens);
define('MP_STATISTICS_UNSUBSCRIBES_TABLE', $statistics_unsubscribes);
define('MP_STATISTICS_FORMS_TABLE', $statistics_forms);
define('MP_IMPORTED_DATA_MAPPING_TABLE', $imported_data_mapping);
}
}
}