Skip to content

Commit

Permalink
BUGFIX: Remove default value for subtreetags to fix MySQL support
Browse files Browse the repository at this point in the history
Fixes: #5252
  • Loading branch information
bwaidelich authored Sep 19, 2024
1 parent a0b6d26 commit 9e8fd2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private function createHierarchyRelationTable(): Table
DbalSchemaFactory::columnForDimensionSpacePointHash('dimensionspacepointhash')->setNotnull(true),
DbalSchemaFactory::columnForNodeAnchorPoint('parentnodeanchor'),
DbalSchemaFactory::columnForNodeAnchorPoint('childnodeanchor'),
(new Column('subtreetags', self::type(Types::JSON)))->setDefault('{}'),
(new Column('subtreetags', self::type(Types::JSON))),
]);

return $table
Expand Down

0 comments on commit 9e8fd2c

Please sign in to comment.