Skip to content

Commit 8c4e8ef

Browse files
authored
Adding see also boxes
1 parent da86db3 commit 8c4e8ef

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

Documentation/Exceptions/1472074485.rst

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,28 @@ Unknown column 'tx_myext_domain_model_myfield.' in 'order clause'
1212
There's no 'foreign_sorting' set in TCA. For me it happened with an
1313
Inline type.
1414

15-
Table 'my_db.tx_myext_domain_model_myfield' doesn't exist
16-
=========================================================
15+
Table 'my_db.tx_someotherextension_domain_model_myfield' doesn't exist
16+
======================================================================
1717

1818
When you have mapped a relation to an external model in your extension,
19-
but forgot to define the mapping in :file:`EXT:extension/Configuration/Extbase/Persistence/Classes.php`.
19+
and did not map it in
20+
:file:`EXT:extension/Configuration/Extbase/Persistence/Classes.php`.
2021

21-
Table 'my_db.tx_myext_domain_model_mymodel' doesn't exist
22-
=========================================================
22+
.. seealso::
23+
* See `Use arbitrary database tables with an Extbase model <https://docs.typo3.org/permalink/t3coreapi:extbase-manual-mapping>`_
24+
for details.
25+
* `Extending an Extbase model <https://docs.typo3.org/permalink/t3coreapi:extending-extbase-model>`_
2326

24-
When you use other extension names in your extension which do not correspond the Extbase table naming scheme,
25-
but forgot to define the :php:`tableName` name in :file:`EXT:extension/Configuration/Extbase/Persistence/Classes.php`.
27+
Table 'my_db.tx_mytablename' doesn't exist
28+
==========================================
29+
30+
A table name which does not correspond the Extbase table naming scheme,
31+
and did not define define the :php:`tableName` name in
32+
:file:`EXT:my_extension/Configuration/Extbase/Persistence/Classes.php`.
33+
34+
.. seealso::
35+
See `Use arbitrary database tables with an Extbase model <https://docs.typo3.org/permalink/t3coreapi:extbase-manual-mapping>`_
36+
for details.
2637

2738
Table 'my_db.tx_myext_persistence_objectstorage' doesn't exist
2839
==============================================================

0 commit comments

Comments
 (0)