Skip to content

Commit d7fc918

Browse files
committed
Enable project workflow history migration
1 parent 4741be4 commit d7fc918

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@ 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 { Disabled, ID } from '~/common';
5+
import { 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-
@Disabled('Until we confirm transitions with product')(
14-
Migration('2024-06-07T18:00:02'),
15-
)
13+
@Migration('2024-06-22T09:00:00')
1614
export class StepHistoryToWorkflowEventsMigration extends BaseMigration {
1715
constructor(
1816
private readonly agents: SystemAgentRepository,

0 commit comments

Comments
 (0)