Browse Source

Add type mapping for binary uuids.

Mark Story 8 years ago
parent
commit
3324bcb842
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/Database/Type.php

+ 1 - 0
src/Database/Type.php

@@ -37,6 +37,7 @@ class Type implements TypeInterface
         'integer' => 'Cake\Database\Type\IntegerType',
         'biginteger' => 'Cake\Database\Type\IntegerType',
         'binary' => 'Cake\Database\Type\BinaryType',
+        'binaryuuid' => 'Cake\Database\Type\BinaryUuidType',
         'boolean' => 'Cake\Database\Type\BoolType',
         'date' => 'Cake\Database\Type\DateType',
         'datetime' => 'Cake\Database\Type\DateTimeType',