Skip to content
Snippets Groups Projects
Commit 5f707322 authored by Christian Kuhn's avatar Christian Kuhn Committed by Georg Ringer
Browse files

[TASK] Avoid a test fixture extension related ext_tables.sql

Add 'title' column to TCA to it auto created in DB.

Resolves: #104109
Releases: main
Change-Id: I246bb64825bae93d252937a04f32ebb9548212d5
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/84713


Tested-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent 8f081ee0
Branches
Tags
No related merge requests found
......@@ -4,5 +4,17 @@ declare(strict_types=1);
return [
'ctrl' => [],
'columns' => [],
'columns' => [
'title' => [
'label' => 'title',
'config' => [
'type' => 'input',
],
],
],
'types' => [
'0' => [
'showitem' => 'title',
],
],
];
CREATE TABLE tx_test_test (
# @todo: title is not in TCA, add it.
title tinytext
);
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment