Skip to content

Commit

Permalink
Merge pull request #5253 from neos/bugfix/5252-fix-mysql-support
Browse files Browse the repository at this point in the history
BUGFIX: Remove default value for subtreetags to fix MySQL support
  • Loading branch information
bwaidelich authored Sep 24, 2024
2 parents 635f97f + 9e8fd2c commit f9f98ba
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 f9f98ba

Please sign in to comment.