From 0201dfa6982f8849e1cc4ef63b273b6cca0f86cd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 4 Mar 2017 20:18:11 +0100 Subject: [PATCH] Bug fixes from unit test --- Models/EditorDocMapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Models/EditorDocMapper.php b/Models/EditorDocMapper.php index 49915fd..454fd59 100644 --- a/Models/EditorDocMapper.php +++ b/Models/EditorDocMapper.php @@ -33,7 +33,7 @@ class EditorDocMapper extends DataMapperAbstract */ static protected $columns = [ 'editor_doc_id' => ['name' => 'editor_doc_id', 'type' => 'int', 'internal' => 'id'], - 'editor_doc_created_by' => ['name' => 'editor_doc_created_by', 'type' => 'string', 'internal' => 'createdBy'], + 'editor_doc_created_by' => ['name' => 'editor_doc_created_by', 'type' => 'int', 'internal' => 'createdBy'], 'editor_doc_title' => ['name' => 'editor_doc_title', 'type' => 'string', 'internal' => 'title'], 'editor_doc_plain' => ['name' => 'editor_doc_plain', 'type' => 'string', 'internal' => 'plain'], 'editor_doc_content' => ['name' => 'editor_doc_content', 'type' => 'string', 'internal' => 'content'],