This commit is contained in:
Dennis Eichhorn 2020-02-07 21:41:13 +01:00
parent 312044039f
commit 629cb5d42b

View File

@ -54,8 +54,8 @@ final class WikiDocMapper extends DataMapperAbstract
'badges' => [ 'badges' => [
'mapper' => BadgeMapper::class, 'mapper' => BadgeMapper::class,
'table' => 'wiki_article_badge', 'table' => 'wiki_article_badge',
'src' => 'wiki_article_badge_badge', 'self' => 'wiki_article_badge_badge',
'dst' => 'wiki_article_badge_article', 'external' => 'wiki_article_badge_article',
], ],
];*/ ];*/
@ -68,7 +68,7 @@ final class WikiDocMapper extends DataMapperAbstract
protected static array $ownsOne = [ protected static array $ownsOne = [
'category' => [ 'category' => [
'mapper' => WikiCategoryMapper::class, 'mapper' => WikiCategoryMapper::class,
'dst' => 'wiki_article_category', 'external' => 'wiki_article_category',
], ],
]; ];