diff --git a/CHANGELOG.md b/CHANGELOG.md index 038f1769d..fd11f1e2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md). #### Patch Changes +- Catalog Crawler: Synced Flyway migrations with the Authority Portal for its v4.2.0 release. + ### Deployment Migration Notes _No special deployment migration steps required_ diff --git a/extensions/catalog-crawler/catalog-crawler-db/src/main/resources/db-crawler/migration/V11__Connector_registration_enhancements.sql b/extensions/catalog-crawler/catalog-crawler-db/src/main/resources/db-crawler/migration/V11__Connector_registration_enhancements.sql new file mode 100644 index 000000000..8a4e173b8 --- /dev/null +++ b/extensions/catalog-crawler/catalog-crawler-db/src/main/resources/db-crawler/migration/V11__Connector_registration_enhancements.sql @@ -0,0 +1,5 @@ +alter type connector_type + add value 'CONFIGURING' after 'CAAS'; + +alter table connector + drop column broker_registration_status;