Remove IS_WORKSPACE_MIGRATION_V2_ENABLED feature flag (#16280)

# Introduction
closes https://github.com/twentyhq/core-team-issues/issues/1911
This commit is contained in:
Paul Rastoin
2025-12-03 16:47:08 +01:00
committed by GitHub
parent c62bd396f7
commit a829ae62e2
13 changed files with 386 additions and 1261 deletions
@@ -1,7 +1,6 @@
import { type QueryRunner } from 'typeorm';
import { FeatureFlagKey } from 'src/engine/core-modules/feature-flag/enums/feature-flag-key.enum';
import { SEED_APPLE_WORKSPACE_ID } from 'src/engine/workspace-manager/dev-seeder/core/constants/seeder-workspaces.constant';
const tableName = 'featureFlag';
@@ -57,11 +56,6 @@ export const seedFeatureFlags = async ({
workspaceId: workspaceId,
value: true,
},
{
key: FeatureFlagKey.IS_WORKSPACE_MIGRATION_V2_ENABLED,
workspaceId: workspaceId,
value: workspaceId === SEED_APPLE_WORKSPACE_ID,
},
{
key: FeatureFlagKey.IS_PAGE_LAYOUT_ENABLED,
workspaceId: workspaceId,