mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-08 17:50:28 +00:00

* create EventSubscriptionDiagnosticInfo * API for failedEvents * migrations * add index on source * list all failedEvents optionally filtered by source * refactor * refactor * getSuccessfullySentChangeEventsForAlert API * increase defaultValue of limit to 100 * resolve conflicts * listEvents API with 'failed', 'successful,' and 'unprocessed' query parameters * fix description * eventSource as enums * refactor name. --------- Co-authored-by: Sriharsha Chintalapani <harshach@users.noreply.github.com>
15 lines
514 B
SQL
15 lines
514 B
SQL
-- Clean dangling workflows not removed after test connection
|
|
truncate automations_workflow;
|
|
|
|
-- App Data Store
|
|
CREATE TABLE IF NOT EXISTS apps_data_store (
|
|
identifier VARCHAR(256) NOT NULL,
|
|
type VARCHAR(256) NOT NULL,
|
|
json JSON NOT NULL
|
|
);
|
|
|
|
-- Add the source column to the consumers_dlq table
|
|
ALTER TABLE consumers_dlq ADD COLUMN source VARCHAR(255) NOT NULL;
|
|
|
|
-- Create an index on the source column in the consumers_dlq table
|
|
CREATE INDEX idx_consumers_dlq_source ON consumers_dlq (source); |