Fix mappers

This commit is contained in:
Dennis Eichhorn 2018-05-21 20:02:41 +02:00
parent e0b0b09bfa
commit 2e67afc1c7

View File

@ -47,7 +47,6 @@ class CalendarMapper extends DataMapperAbstract
protected static $columns = [
'calendar_id' => ['name' => 'calendar_id', 'type' => 'int', 'internal' => 'id'],
'calendar_name' => ['name' => 'calendar_name', 'type' => 'string', 'internal' => 'name'],
'calendar_password' => ['name' => 'calendar_password', 'type' => 'string', 'internal' => 'password'],
'calendar_description' => ['name' => 'calendar_description', 'type' => 'string', 'internal' => 'description'],
'calendar_created_at' => ['name' => 'calendar_created_at', 'type' => 'DateTime', 'internal' => 'createdAt'],
];