Skip to content

Instantly share code, notes, and snippets.

@dbonneville
Created November 8, 2012 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbonneville/4039515 to your computer and use it in GitHub Desktop.
Save dbonneville/4039515 to your computer and use it in GitHub Desktop.
dbal mapping
$TYPO3_CONF_VARS['EXTCONF']['dbal']['mapping'] = array(
'cachingframework_cache_hash' => array(
'mapTableName' => 'cf_cache_hash',
),
'cachingframework_cache_pages' => array(
'mapTableName' => 'cf_cache_pages',
),
'cachingframework_cache_hash_tags' => array(
'mapTableName' => 'cf_cache_hash_tags',
),
'cachingframework_cache_pages_tags' => array(
'mapTableName' => 'cf_cache_pages_tags',
),
'cachingframework_cache_pagesection' => array(
'mapTableName' => 'cf_cache_ps',
),
'cachingframework_cache_pagesection_tags' => array(
'mapTableName' => 'cf_cache_ps_tags',
),
'tx_templavoila_datastructure' => array(
'mapTableName' => 'tx_templavoila_ds',
),
'tx_pyramisresources_domain_model_pyramisresources' => array(
'mapTableName' => 'tx_pyramis_dm_pr',
),
'tx_pyramisresources_domain_model_resourcecategories' => array(
'mapTableName' => 'tx_pyramis_dm_rc',
),
'tx_pyramisresources_pyarmisresources_resourcecategories_mm' => array(
'mapTableName' => 'tx_pyramis_pr_rc_mm',
),
'tx_pyramisresources_domain_model_industrytopics' => array(
'mapTableName' => 'tx_pyramis_dm_it',
),
'tx_pyramisresources_pyarmisresources_industrytopics_mm' => array(
'mapTableName' => 'tx_pyramis_pr_it_mm',
),
'tx_pyramisresources_domain_model_targets' => array(
'mapTableName' => 'tx_pyramis_dm_t',
),
'tx_pyramisresources_pyarmisresources_targets_mm' => array(
'mapTableName' => 'tx_pyramis_pr_t_mm',
),
'tx_pyramisresources_pyarmisresources_targets_featured_mm' => array(
'mapTableName' => 'tx_pyramis_r_tf_mm',
),
'tx_pyramisresources_domain_model_authors' => array(
'mapTableName' => 'tx_pyramis_dm_a',
),
'tx_pyramisresources_pyarmisresources_authors_mm' => array(
'mapTableName' => 'tx_pyramis_pr_a_mm',
),
'tx_extbase_cache_reflection_tags' => array(
'mapTableName' => 'eb_c_reflection_tags'
),
'tx_pyramisresources_domain_model_category' => array(
'mapTableName' => 'tx_pyramis_dm_c',
),
'tx_pyramisresources_pyramisresources_categories_mm' => array(
'mapTableName' => 'tx_pyramis_pr_c_mm',
),
'tx_pyramisresources_pyramisresources_relatedresources_mm' => array(
'mapTableName' => 'tx_pyramis_pr_rr_mm',
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment