CMS  Version 3.9
data_sync_upgrade_manager.inc
Go to the documentation of this file.
1 <?php
17 Fakoli::using("data_sync", "component");
18 
20 {
21  var $updateMap = array(
22  "1.0" => "sql:Added data_import_field_mapping table",
23  "1.1" => "sql:Added required column to data_import_field_mapping",
24  "1.2" => "sql:Added grouping column to data_import_field_mapping",
25  "1.3" => "sql:Added data_import_profile table",
26  "1.4" => "sql:Added class field to data_import_profile",
27  "1.5" => "sql:Added notes field to data_import_field_mapping",
28  "1.6" => "sql:Fixed missing default value for notes field on data_import_field_mapping table",
29  "1.7" => "sql:Changed grouping field to grouped to fix compatibility issue with MySQL 8"
30  );
31 
33  {
34  $this->component_name = "data_sync";
35 
36  // sets the sqlFile name according to default
37  parent::UpgradeManager();
38  }
39 }
40 ?>
static using()
Import the datamodels, views and manifest for the specified component(s).
Definition: core.inc:116