remove comment

This commit is contained in:
Mutasem 2022-08-04 16:54:00 +02:00
parent a9e63b9923
commit 48ddf1f68f

View file

@ -20,7 +20,7 @@ export class AddNodeIds1658932910559 implements MigrationInterface {
await runChunked(queryRunner, workflowsQuery, (workflows) => {
workflows.forEach(async (workflow) => {
let nodes = workflow.nodes;
if (typeof nodes === 'string') { // mariadb
if (typeof nodes === 'string') {
nodes = JSON.parse(nodes);
}