From 39314855aa5475c016ffae1f747f903db1ee1685 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sun, 18 Aug 2013 16:02:03 +0200 Subject: [PATCH] Add 'bigint unsigned' mapping to Doctrine SqlitePlatform --- doctrine/dbal/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php | 1 + 1 file changed, 1 insertion(+) diff --git a/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php b/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php index 58390898..e6ac337a 100644 --- a/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php +++ b/doctrine/dbal/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php @@ -519,6 +519,7 @@ protected function initializeDoctrineTypeMappings() 'numeric' => 'decimal', 'blob' => 'blob', 'integer unsigned' => 'integer', + 'bigint unsigned' => 'bigint', ); }