Dashboard Enhancement: Add Edit and Delete actions for Database Views #41491
Unanswered
Franklyn-R-Silva
asked this question in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
manual SQL intervention for common tasks. While Tables have direct "Edit" and "Delete" buttons in the UI, Views are missing these shortcuts. To modify a view, users must manually navigate to the SQL Editor and write
DROP VIEW ...followed byCREATE VIEW ..., which is a repetitive and less efficient workflow.I would like to see dedicated action buttons/context menu options for Database Views within the Dashboard (Database > Views section), specifically:
CREATE OR REPLACE VIEWdefinition of that specific view, allowing for quick adjustments.The current alternative is manually inspecting the view definition via SQL or the table schema view and then switching to the SQL Editor to perform the update/deletion manually.
This feature would significantly improve the Developer Experience (DX) for users who rely on Views for API abstraction, complex joins, or security layers. Adding these shortcuts would bring consistency to the Dashboard, making View management as seamless as Table management.
All reactions