Skip to content
Snippets Groups Projects
Commit 2b1a7a76 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #8425 from owncloud/columns_should_be_nullable_by_default

columns should be nullable by default
parents d3e830e9 6694129c
No related branches found
No related tags found
No related merge requests found
...@@ -130,7 +130,7 @@ class MDB2SchemaReader { ...@@ -130,7 +130,7 @@ class MDB2SchemaReader {
* @throws \DomainException * @throws \DomainException
*/ */
private function loadField($table, $xml) { private function loadField($table, $xml) {
$options = array(); $options = array( 'notnull' => false );
foreach ($xml->children() as $child) { foreach ($xml->children() as $child) {
/** /**
* @var \SimpleXMLElement $child * @var \SimpleXMLElement $child
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment