Dev seed ycombinator workspace is on v1 (#14868)

Tested v1:
- object CRUD
- FIELD CRUD
- VIEW CRUD
- VIEW FIELD CRUD
This commit is contained in:
Paul Rastoin
2025-10-03 10:01:00 +00:00
committed by GitHub
parent d0ff2d31a2
commit a6ffd4707a
@@ -1,6 +1,7 @@
import { type DataSource } 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/utils/seed-workspaces.util';
const tableName = 'featureFlag';
@@ -53,7 +54,7 @@ export const seedFeatureFlags = async (
{
key: FeatureFlagKey.IS_WORKSPACE_MIGRATION_V2_ENABLED,
workspaceId: workspaceId,
value: true,
value: workspaceId === SEED_APPLE_WORKSPACE_ID,
},
{
key: FeatureFlagKey.IS_PAGE_LAYOUT_ENABLED,