Update null command (#16567)

Remove version condition to re-run the command on upgraded workspaces on
which it fails
This commit is contained in:
Etienne
2025-12-15 14:55:32 +01:00
committed by GitHub
parent a83732d7a6
commit 3e55e772d4
@@ -62,16 +62,6 @@ export class CleanEmptyStringNullInTextFieldsCommand extends ActiveOrSuspendedWo
`Could not find workspace ${workspaceId}, should never occur`,
);
}
if (
!isDefined(workspace.version) ||
!['1.12.0', '1.12.1'].includes(workspace.version)
) {
this.logger.log(
`Workspace ${workspaceId} is not a v1.12.0 or v1.12.1 workspace, skipping`,
);
return;
}
const schemaName = getWorkspaceSchemaName(workspaceId);