mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
71 lines
2 KiB
TypeScript
71 lines
2 KiB
TypeScript
/* eslint-disable @typescript-eslint/restrict-template-expressions */
|
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
/* eslint-disable n8n-local-rules/no-uncaught-json-parse */
|
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
import type { MigrationContext, ReversibleMigration } from '@db/types';
|
|
import { v4 as uuid } from 'uuid';
|
|
import { runInBatches } from '@db/utils/migrationHelpers';
|
|
|
|
// add node ids in workflow objects
|
|
|
|
export class AddNodeIds1658932090381 implements ReversibleMigration {
|
|
async up({ queryRunner, tablePrefix }: MigrationContext) {
|
|
const workflowsQuery = `
|
|
SELECT id, nodes
|
|
FROM ${tablePrefix}workflow_entity
|
|
`;
|
|
|
|
// @ts-ignore
|
|
await runInBatches(queryRunner, workflowsQuery, (workflows) => {
|
|
workflows.forEach(async (workflow) => {
|
|
const nodes = workflow.nodes;
|
|
// @ts-ignore
|
|
nodes.forEach((node) => {
|
|
if (!node.id) {
|
|
node.id = uuid();
|
|
}
|
|
});
|
|
|
|
const [updateQuery, updateParams] = queryRunner.connection.driver.escapeQueryWithParameters(
|
|
`
|
|
UPDATE ${tablePrefix}workflow_entity
|
|
SET nodes = :nodes
|
|
WHERE id = '${workflow.id}'
|
|
`,
|
|
{ nodes: JSON.stringify(nodes) },
|
|
{},
|
|
);
|
|
|
|
await queryRunner.query(updateQuery, updateParams);
|
|
});
|
|
});
|
|
}
|
|
|
|
async down({ queryRunner, tablePrefix }: MigrationContext) {
|
|
const workflowsQuery = `
|
|
SELECT id, nodes
|
|
FROM ${tablePrefix}workflow_entity
|
|
`;
|
|
|
|
// @ts-ignore
|
|
await runInBatches(queryRunner, workflowsQuery, (workflows) => {
|
|
workflows.forEach(async (workflow) => {
|
|
const nodes = workflow.nodes;
|
|
// @ts-ignore
|
|
nodes.forEach((node) => delete node.id);
|
|
|
|
const [updateQuery, updateParams] = queryRunner.connection.driver.escapeQueryWithParameters(
|
|
`UPDATE ${tablePrefix}workflow_entity
|
|
SET nodes = :nodes
|
|
WHERE id = '${workflow.id}'`,
|
|
{ nodes: JSON.stringify(nodes) },
|
|
{},
|
|
);
|
|
|
|
await queryRunner.query(updateQuery, updateParams);
|
|
});
|
|
});
|
|
}
|
|
}
|