<?php declare(strict_types=1); /* * This file is part of alox bundle for Contao. * * (c) Benjamin Roth * * @license commercial */ $GLOBALS['TL_DCA']['tl_vr_api_user_counter'] = [ 'config' => [ 'sql' => [ 'keys' => [ 'id' => 'primary', ] ] ], 'fields' => [ 'id' => [ 'sql' => "int(10) unsigned NOT NULL auto_increment" ], 'tstamp' => [ 'sql' => "int(10) unsigned NOT NULL 0" ], 'created' => [ 'sql' => "int(10) unsigned NOT NULL 0" ], ] ];