Skip to content

Commit

Permalink
Made props nullable again
Browse files Browse the repository at this point in the history
  • Loading branch information
dantleech committed Dec 28, 2014
1 parent 0135495 commit 433adb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jackalope/Transport/DoctrineDBAL/RepositorySchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ protected function addNodesTable()
$nodes->addColumn('workspace_name', 'string');
$nodes->addColumn('identifier', 'string');
$nodes->addColumn('type', 'string');
$nodes->addColumn('props', 'text', array('notnull' => false));
$nodes->addColumn('props', 'text');
$nodes->addColumn('numerical_props', 'text', array('notnull' => false));
$nodes->addColumn('depth', 'integer');
$nodes->addColumn('sort_order', 'integer', array('notnull' => false));
Expand Down

0 comments on commit 433adb9

Please sign in to comment.