Initial standalone bundle release (sanitized history)

This commit is contained in:
Jürgen Mummert
2026-04-01 11:05:34 +02:00
commit 42a94a2dd9
21 changed files with 1924 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
$GLOBALS['TL_DCA']['exported_events'] = [
'config' => [
'sql' => [
'keys' => [
'externalid' => 'primary'
]
]
],
'fields' => [
'externalid' => [
'sql' => "VARCHAR(255) NOT NULL"
],
'last_export_date' => [
'sql' => "DATETIME NOT NULL"
],
'status' => [
'sql' => "VARCHAR(10) NOT NULL DEFAULT 'ok'"
]
]
];