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

* fix(ui): pagination issue with search in services list page * Add Apps Data store * Revert Services Changes --------- Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com>
15 lines
637 B
SQL
15 lines
637 B
SQL
-- Extend app extension for limits
|
|
ALTER TABLE apps_extension_time_series ADD COLUMN extension VARCHAR(255);
|
|
UPDATE apps_extension_time_series SET extension = 'status' WHERE extension IS NULL;
|
|
ALTER TABLE apps_extension_time_series ALTER COLUMN extension SET NOT NULL;
|
|
CREATE INDEX IF NOT EXISTS apps_extension_time_series_extension ON apps_extension_time_series(extension);
|
|
|
|
-- 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
|
|
); |