DB: Set correct default value for numeric types

Set 0 as default value for columns with numeric data type instead of the
empty string ''. Otherwise the database complains about an invalid
default value for this column.

To reproduce put the following in your ````appinfo/database.xml````:

````
<field>
        <name>modified</name>
        <type>decimal</type>
        <default/>
        <notnull>true</notnull>
        <length>15</length>
</field>
````

See owncloud/mozilla_sync#14
This commit is contained in:
Oliver Gasser 2013-11-10 14:14:27 +01:00
parent 841c622085
commit b278356eb9
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ class MDB2SchemaReader {
} else {
$options['default'] = '';
}
if ($type == 'integer') {
if ($type == 'integer' || $type == 'numeric') {
$options['default'] = 0;
} elseif ($type == 'boolean') {
$options['default'] = false;