TASK: Add missing path to TCA file

This commit is contained in:
Daniel Siepmann 2018-11-05 09:29:52 +01:00
parent 7ca9b4a7d3
commit 6223616d15
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -30,7 +30,10 @@ One thing to notice is that Extbase uses "Convention over Configuration". While
can configure Extbase to map a Model to a specific database table, we can auto match
them. For a Model ``\Workshop\ExampleExtension\Domain\Model\Address``, the database
table would be ``tx_exampleextension_domain_model_address``. So this will be
our database table name for our example.
our database table name for our example. Also TYPO3 uses convention over
configuration, so the TCA for this table is placed within
:file:`Configuration/TCA/tx_exampleextension_domain_model_address.php` within our
Extension.
Also each property within the model is written lowerCamelCase, while the database
columns are written snake_case.