Skip to content

Commit

Permalink
fix: Improve documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
yylian committed Aug 13, 2024
1 parent acca304 commit 9113074
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md).

#### Patch Changes

- Remove duplicate database indices if they exist
- Improve database performance by removing duplicate indexes

### Deployment Migration Notes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,11 @@
-- sovity GmbH - Improve database performance by removing duplicate indices
--

-- Drop the non _pk index for edc_contract_agreement if it exists.
-- Drop the duplicate indexes if they exist for improved resource usage.
DROP INDEX IF EXISTS contract_agreement_id_uindex;

-- Drop the non _pk index for edc_contract_negotiation if it exists.
DROP INDEX IF EXISTS contract_negotiation_id_uindex;

-- Drop the non _pk index for edc_data_request if it exists.
DROP INDEX IF EXISTS data_request_id_uindex;

-- Drop the non _pk index for edc_lease if it exists.
DROP INDEX IF EXISTS lease_lease_id_uindex;

-- Drop the non _pk index for edc_policydefinitions if it exists.
DROP INDEX IF EXISTS edc_policydefinitions_id_uindex;

-- Drop the non _pk index for edc_transfer_process if it exists.
DROP INDEX IF EXISTS transfer_process_id_uindex;

0 comments on commit 9113074

Please sign in to comment.