Test fixes after module+builder test extension

This commit is contained in:
Dennis Eichhorn 2019-02-26 21:42:51 +01:00
parent 7647e69efd
commit 50a2fbfc0a
2 changed files with 58 additions and 50 deletions

View File

@ -39,9 +39,10 @@
}, },
"hr_staff_active": { "hr_staff_active": {
"name": "hr_staff_active", "name": "hr_staff_active",
"type": "INT", "type": "TINYINT",
"null": false "null": false
} }
}
}, },
"hr_staff_history": { "hr_staff_history": {
"name": "hr_staff_history", "name": "hr_staff_history",
@ -94,4 +95,3 @@
} }
} }
} }
}

View File

@ -25,4 +25,12 @@ final class EmployeeHistoryMapper extends DataMapperAbstract
* @since 1.0.0 * @since 1.0.0
*/ */
protected static $primaryField = 'hr_staff_history_id'; protected static $primaryField = 'hr_staff_history_id';
/**
* Primary table.
*
* @var string
* @since 1.0.0
*/
protected static $table = 'hr_staff_history';
} }