Skip to content

Commit 48bc4c5

Browse files
authored
Update 1470230766.rst
1 parent a3d745f commit 48bc4c5

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Documentation/Exceptions/1470230766.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@ TYPO3 Exception 1470230766
99
Unknown column 'a' in 'field list'
1010
==================================
1111

12+
The field might not have been created yet: do a
13+
`Database compare <https://docs.typo3.org/permalink/t3coreapi:database-upgrade>`_.
14+
1215
This error might occur if a model contains a field that does not exist
1316
in the corresponding database table. In this case you should add the
1417
field to the table in ext_tables.sql.
18+
19+
Table 'db.tx_myextension_domain_model_mymodel' doesn't exist
20+
============================================================
21+
22+
* The table might not have been created yet: do a
23+
`Database compare <https://docs.typo3.org/permalink/t3coreapi:database-upgrade>`_.
24+
* The TCA for the model is missing.
25+
* You intend to use a different table with your model.
26+
See `Connecting the model to the database <https://docs.typo3.org/permalink/t3coreapi:extbase-persistence-database-connection>`_
27+
`Use arbitrary database tables with an Extbase model <https://docs.typo3.org/permalink/t3coreapi:extbase-manual-mapping>`_

0 commit comments

Comments
 (0)