Clean metadata and schema (#2382)

This commit is contained in:
martmull
2023-11-07 12:33:54 +01:00
committed by GitHub
parent 7aa6b20418
commit 0ae56b055c
6 changed files with 39 additions and 0 deletions

View File

@ -41,4 +41,8 @@ export class DataSourceMetadataService {
order: { createdAt: 'DESC' },
});
}
async delete(workspaceId: string) {
await this.dataSourceMetadataRepository.delete({ workspaceId });
}
}