mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
c9366acbec
Summary: Ref T5471. Adds an archived state for panels. Archived panels don't show up in the default query view or in the "Add Existing Panel" workflow. Test Plan: - Archived a panel. - Activated a panel. - Viewed / searched for archived/active panels. - Popped "Add Existing Panel" dropdown and saw it omit archived panels. Reviewers: chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T5471 Differential Revision: https://secure.phabricator.com/D9779
2 lines
110 B
SQL
2 lines
110 B
SQL
ALTER TABLE {$NAMESPACE}_dashboard.dashboard_panel
|
|
ADD isArchived BOOL NOT NULL DEFAULT 0 AFTER editPolicy;
|