Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/3rdparty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-08-18 18:02:03 +0400
committerBart Visscher <bartv@thisnet.nl>2013-08-18 18:02:03 +0400
commit39314855aa5475c016ffae1f747f903db1ee1685 (patch)
treeaa4b2cdd608c81209b0aaa3477ec130548101998 /doctrine
parent75a05d76ab86ba7454b4312fd0ff2ca5bd5828cf (diff)
Add 'bigint unsigned' mapping to Doctrine SqlitePlatform
Diffstat (limited to 'doctrine')
-rw-r--r--doctrine/dbal/lib/Doctrine/DBAL/Platforms/SqlitePlatform.php1
1 files changed, 1 insertions, 0 deletions
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 @@ class SqlitePlatform extends AbstractPlatform
'numeric' => 'decimal',
'blob' => 'blob',
'integer unsigned' => 'integer',
+ 'bigint unsigned' => 'bigint',
);
}