Files
eventmanager-bundle/contao/dca/tl_calendar_events_organization.php
T
Jürgen Mummert 63b5556b21 Initial release
2026-02-17 18:53:39 +01:00

33 lines
943 B
PHP

<?php
declare(strict_types=1);
use Contao\DC_Table;
$GLOBALS['TL_DCA']['tl_calendar_events_organization'] = [
'config' => [
'dataContainer' => DC_Table::class,
'sql' => [
'keys' => [
'id' => 'primary',
'event_id' => 'index',
'organization_id' => 'index',
],
],
],
'fields' => [
'id' => [
'sql' => ['type' => 'integer', 'unsigned' => true, 'autoincrement' => true, 'notnull' => true],
],
'tstamp' => [
'sql' => ['type' => 'integer', 'unsigned' => true, 'default' => 0, 'notnull' => true],
],
'event_id' => [
'sql' => ['type' => 'integer', 'unsigned' => true, 'default' => 0, 'notnull' => true],
],
'organization_id' => [
'sql' => ['type' => 'integer', 'unsigned' => true, 'default' => 0, 'notnull' => true],
],
],
];