mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-05 21:06:11 +01:00
23 lines
812 B
PHP
23 lines
812 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
\WerkraumMedia\ThueCat\Domain\Model\Backend\Organisation::class => [
|
||
|
'tableName' => 'tx_thuecat_organisation',
|
||
|
],
|
||
|
\WerkraumMedia\ThueCat\Domain\Model\Backend\Town::class => [
|
||
|
'tableName' => 'tx_thuecat_town',
|
||
|
],
|
||
|
\WerkraumMedia\ThueCat\Domain\Model\Backend\TouristInformation::class => [
|
||
|
'tableName' => 'tx_thuecat_tourist_information',
|
||
|
],
|
||
|
\WerkraumMedia\ThueCat\Domain\Model\Backend\ImportConfiguration::class => [
|
||
|
'tableName' => 'tx_thuecat_import_configuration',
|
||
|
],
|
||
|
\WerkraumMedia\ThueCat\Domain\Model\Backend\ImportLog::class => [
|
||
|
'tableName' => 'tx_thuecat_import_log',
|
||
|
],
|
||
|
\WerkraumMedia\ThueCat\Domain\Model\Backend\ImportLogEntry::class => [
|
||
|
'tableName' => 'tx_thuecat_import_log_entry',
|
||
|
],
|
||
|
];
|