- Removing unique constraint creation in 0.32 as we have a dependency on
sync-metadata and sync-metadata has a dependency on it if we keep it.
- sync-metadata does not support well the deletion of activity +
activityTarget, silently swallow the exception for now
This commit is contained in:
Charles Bochet
2024-11-04 22:08:07 +01:00
committed by GitHub
parent 8e82b08acb
commit 4fc690b42c
3 changed files with 7 additions and 5 deletions

View File

@ -522,6 +522,10 @@ export class WorkspaceMigrationRunnerService {
);
if (!foreignKeyName) {
// Todo: Remove this temporary hack tied to 0.32 upgrade
if (migrationColumn.columnName === 'activityId') {
return;
}
throw new Error(
`Foreign key not found for column ${migrationColumn.columnName}`,
);