Skip to content

Commit

Permalink
DataSet: create using utf8mb4
Browse files Browse the repository at this point in the history
  • Loading branch information
dasgarner committed Apr 5, 2024
1 parent ecafbdd commit e795bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Entity/DataSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -1098,7 +1098,7 @@ private function createTable()
CREATE TABLE `dataset_' . $this->dataSetId . '` (
`id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1
', []);
}

Expand Down

0 comments on commit e795bc8

Please sign in to comment.