OpenMetadata/bootstrap/sql/migrations/native/1.9.0/postgres/postDataMigrationSQLScript.sql
sonika-shah d5515ded3b
Add migrations to update widget descriptions (#22707)
* Add migrations to update widget descriptions

* move to postDataMigrationSQLScript.sql

* move to postDataMigrationSQLScript.sql

* move to postDataMigrationSQLScript.sql
2025-08-02 16:55:02 +05:30

60 lines
2.7 KiB
SQL

-- Update widget description
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Aggregates platform activity including asset updates, comments, and task changes, keeping users informed."')
WHERE name = 'ActivityFeed' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Allows admins to create customized lists of high-impact asset views by applying filters. Ideal for curating datasets relevant to specific user groups."')
WHERE name = 'CuratedAssets' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Highlights data assets across the platform for quicker access to frequently used or high-value datasets."')
WHERE name = 'DataAssets' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Lists data assets that the user is actively following and provides quick access."')
WHERE name = 'Following' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Visualizes key performance metrics of data assets in an intuitive graph format."')
WHERE name = 'KPI' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Shows recently viewed data assets for quick access and seamless continuation of work."')
WHERE name = 'MyData' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Displays a real-time feed of assigned tasks to help users track and manage their workload efficiently."')
WHERE name = 'MyTask' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Shows the total number of data assets that can be accessed, gives a quick view of what''s available in the system."')
WHERE name = 'TotalAssets' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Displays all available domains to explore and access data grouped by specific data assets."')
WHERE name = 'Domains' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Presents an overview of data quality test result status and links to access incidents."')
WHERE name = 'DataQuality' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Quick access for recently viewed or edited articles, policies, and guidelines for team-wide clarity."')
WHERE name = 'KnowledgeCenter' AND entityType = 'KnowledgePanel';
UPDATE doc_store
SET json = jsonb_set(json, '{description}',
'"Lists active or recent data pipeline executions with status and progress of data flows."')
WHERE name = 'PipelineStatus' AND entityType = 'KnowledgePanel';