From d1b76f1b8829bcaad62f987650929abebf2faf03 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 24 Jun 2013 22:37:07 +0200 Subject: [PATCH] Fix not null with empty default --- lib/db/mdb2schemareader.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index 7a7efe551c1..00b880a68b4 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -144,6 +144,7 @@ class OC_DB_MDB2SchemaReader { if (empty($options['default'])) { if (empty($options['notnull']) || !$options['notnull']) { unset($options['default']); + $options['notnull'] = false; } if ($type == 'integer') { $options['default'] = 0;