Skip to content

Commit d9378b6

Browse files
committed
Disabling neo4j data migration until transitions are confirmed with product
1 parent ed89905 commit d9378b6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/project/workflow/migrations/step-history-to-workflow-events.migration.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@ import { ModuleRef } from '@nestjs/core';
22
import { node, relation } from 'cypher-query-builder';
33
import { chunk } from 'lodash';
44
import { DateTime } from 'luxon';
5-
import { ID } from '~/common';
5+
import { Disabled, ID } from '~/common';
66
import { BaseMigration, Migration } from '~/core/database';
77
import { ACTIVE, variable } from '~/core/database/query';
88
import { SystemAgentRepository } from '../../../user/system-agent.repository';
99
import { Project, ProjectStep, ProjectType } from '../../dto';
1010
import { ProjectWorkflowRepository } from '../project-workflow.repository';
1111
import { ProjectWorkflowService } from '../project-workflow.service';
1212

13-
@Migration('2024-06-07T18:00:02')
13+
@Disabled('Until we confirm transitions with product')(
14+
Migration('2024-06-07T18:00:02'),
15+
)
1416
export class StepHistoryToWorkflowEventsMigration extends BaseMigration {
1517
constructor(
1618
private readonly agents: SystemAgentRepository,

0 commit comments

Comments
 (0)