From e1c1b0d10721f83b65cebabd0d2a7fdb3c6c6e77 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sat, 20 Apr 2013 10:33:17 +0200 Subject: [PATCH] [DBAL-487] Map integer unsigned to Doctrine integer. --- lib/Doctrine/DBAL/Platforms/SqlitePlatform.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php b/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php index a6ac2c04b15..683737b46c8 100644 --- a/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php +++ b/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php @@ -529,6 +529,7 @@ protected function initializeDoctrineTypeMappings() 'decimal' => 'decimal', 'numeric' => 'decimal', 'blob' => 'blob', + 'integer unsigned' => 'integer', ); }