---
title: "Deprecation: #80000 - InlineOverrideChildTca"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-80000"
source: "Changelog/8.7/Deprecation-80000-InlineOverrideChildTca.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Deprecation: #80000 - InlineOverrideChildTca

See [forge#80000](https://forge.typo3.org/issues/80000)

## Description

These `TCA` `type=inline` properties have been deprecated and superseded with the more
general property `overrideChildTca`:

-   foreign_types
-   foreign_selector_fieldTcaOverride
-   foreign_record_defaults

## Impact

It is now possible to override display (FormEngine) related columns properties and the types section of
child `TCA` from within the parent `TCA`. This is also allowed in a
parents `['types']['columnsOverrides']` section.

## Affected Installations

Instances using one of the above inline properties should adapt to the new `overrideChildTca` property.

## Migration

A `TCA` auto-migration is in place. It will transfer the old settings to the new property as
shown below and logs deprecation entries if there is no `overrideChildTca` defined. This allows extension
authors to keep both the old and the new settings to support CMS v7 and v8 at the same time without
having deprecations logged.

foreign_types before and after transition to overrideChildTca:

```php
'columns' => [
    'aField' => [
        'config' => [
            'type' => 'inline',
            'foreign_types' => [
                'aForeignType' => [
                    'showitem' => 'aChildField',
                ],
            ],
            ...
        ],
    ],
    ...
],
```

```php
'columns' => [
    'aField' => [
        'config' => [
            'type' => 'inline',
            'overrideChildTca' => [
                'types' => [
                    'aForeignType' => [
                        'showitem' => 'aChildField',
                    ],
                ],
            ],
            ...
        ],
    ],
    ...
],
```

foreign_selector_fieldTcaOverride before and after transition to overrideChildTca:

```php
'columns' => [
    'aField' => [
        'config' => [
            'type' => 'inline',
            'foreign_selector' => 'uid_local',
            'foreign_selector_fieldTcaOverride' => [
                'config' => [
                    'appearance' => [
                        'elementBrowserType' => 'file',
                    ],
                ],
            ],
            ...
        ],
    ],
    ...
],
```

```php
'columns' => [
    'aField' => [
        'config' => [
            'type' => 'inline',
            'foreign_selector' => 'uid_local',
            'overrideChildTca' => [
                'columns' => [
                    'uid_local' => [
                        'config' => [
                            'appearance' => [
                                'elementBrowserType' => 'file',
                            ],
                        ],
                    ],
                ],
            ],
            ...
        ],
    ],
    ...
],
```

foreign_record_defaults before and after transition to overrideChildTca:

```php
'columns' => [
    'aField' => [
        'config' => [
            'type' => 'inline',
            'foreign_record_defaults' => [
                'aChildField' => 42,
            ],
            ...
        ],
    ],
    ...
],
```

```php
'columns' => [
    'aField' => [
        'config' => [
            'type' => 'inline',
            'overrideChildTca' => [
                'columns' => [
                    'aChildField' => [
                        'config' => [
                            'default' => 42,
                        ],
                    ],
                ],
            ],
            ...
        ],
    ],
    ...
],
```
