Browse code

Updates

Benjamin Roth authored on01/06/2023 23:39:31
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,32 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
+
5
+/*
6
+ * This file is part of alox bundle for Contao.
7
+ *
8
+ * (c) Benjamin Roth
9
+ *
10
+ * @license commercial
11
+ */
12
+
13
+$GLOBALS['TL_DCA']['tl_vr_api_user_counter'] = [
14
+    'config' => [
15
+        'sql' => [
16
+            'keys' => [
17
+                'id' => 'primary',
18
+            ]
19
+        ]
20
+    ],
21
+    'fields' => [
22
+        'id' => [
23
+            'sql' => "int(10) unsigned NOT NULL auto_increment"
24
+        ],
25
+        'tstamp' => [
26
+            'sql' => "int(10) unsigned NOT NULL 0"
27
+        ],
28
+        'created' => [
29
+            'sql' => "int(10) unsigned NOT NULL 0"
30
+        ],
31
+    ]
32
+];