---
title: "Deprecation: #97384 - TCA option \"eval=null\" replaced with \"nullable\""
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-97384"
source: "Changelog/12.0/Deprecation-97384-TCAOptionNullable.rst"
typo3-version: "12.0"
typo3-major: 12
type: "deprecation"
issue: 97384
forge: "https://forge.typo3.org/issues/97384"
tags: ["TCA", "NotScanned", "ext:backend"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Deprecation: #97384 - TCA option "eval=null" replaced with "nullable" {#deprecation-97384}

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

## Description {#description}

The TCA option `eval=null` has been replaced with the boolean option
`nullable`.

## Impact {#impact}

The TCA option `eval=null` will be automatically migrated to
`'nullable' => true`. The migration will trigger a PHP `E_USER_DEPRECATED` error.

## Affected Installations {#affected-installations}

All installations defining the `null` value in their `eval` list.

## Migration {#migration}

To migrate your TCA add the TCA option `'nullable' => true` and remove the
`null` value from the field's `eval` list.

```php
// Before

'columns' => [
   'nullable_column' => [
       'title' => 'A nullable field',
       'config' => [
           'eval' => 'null',
       ],
   ],
],

// After

'columns' => [
   'nullable_column' => [
       'title' => 'A nullable field',
       'config' => [
           'nullable' => true,
       ],
   ],
],
```
