---
title: "TYPO3 Exception 1381512761"
manual: "TYPO3 Exceptions"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3exceptions:typo3-exception-1381512761"
source: "Exceptions/1381512761.rst"
modified: "2026-09-16T07:39:08+00:00"
---

# TYPO3 Exception 1381512761

> [!NOTE]
> Below, the TYPO3 community may have provided additional information or
> solutions for this exception. However, these may or may not apply to your
> particular case. If you can provide more information, you should come back
> here and add your experience and solution steps to this issue once you have
> resolved it.
>
> General TYPO3 troubleshooting tips can be found in the *Troubleshooting*
> section in the menu. You can also ask questions and receive support in the
> [TYPO3 Questions category on talk.typo3.org](https://talk.typo3.org/c/typo3-questions/).
>
> To add your experience, click "Edit on GitHub" above and follow the
> ["Edit on GitHub" workflow](https://docs.typo3.org/m/typo3/docs-how-to-document/main/en-us/Howto/EditOnGithub.html#docs-contribute-github-method).
> Also check out
> [our tip on Coding Style and reST](https://docs.typo3.org/permalink/t3exceptions:tip-about-rest-coding-style).

## Invalid value "..." for enumeration "..." in v12

### Invalid value "-1" for enumeration "TYPO3CMSCoreVersioningVersionState"

The value `-1` is no longer valid for VersionState.
The corresponding rows should have been updated within the database by an Upgrade Wizard "WorkspaceNewPlaceholderRemovalMigration".
More information is available at: [https://forge.typo3.org/issues/99401#note-3](https://forge.typo3.org/issues/99401#note-3)

### TYPO3 6.2.x and higher (after update from 6.1 or lower)

Error occurred in an extension after migration 6.1 -> 6.2 due to wrong
(invalid) field data types in the TCA (`'type' => 'date',`) -> `'date'` is an
invalid type. It seems, v6.1 didn't care very much about invalid types,
but 6.2 does. Changing the datatype to `'type' => 'input', 'eval' => 'datetime'`
solved the problem.

### After Upgrade to v11 TCA config internal_type => 'file_reference' make problem

After an update to TYPO3 v11 from a very old v6.2 installation, the TCA config for TCA type group
is deprecated. You cannot use `internal_type => 'file_reference'` or `internal_type => 'file'`.
Migrate your old TCA to new one using type `inline` as `fileReferences`.

> [!NOTE]
> **See also**
>
> [https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/9.5/Deprecation-86406-TCATypeGroupInternal_typeFileAndFile_reference.html](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/9.5/Deprecation-86406-TCATypeGroupInternal_typeFileAndFile_reference.html)
