doctrine / doctrine1

[Abandoned - please upgrade to Doctrine 2] Doctrine 1 Object Relational Mapper

Home Page:http://www.doctrine-project.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add "bigint" type to the Doctrine_Formatter::quote(...)

66Ton99 opened this issue · comments

Index: Formatter.php
===================================================================
--- Formatter.php   (revision 2)
+++ Formatter.php   (working copy)
@@ -171,6 +171,7 @@
         case 'bool':
         case 'decimal':
         case 'int':
+        case 'bigint':
             return $input;
         case 'array':
         case 'object':

And will be nice create default case for it.