mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
3c4b05bcd4
Summary: Fixes T9500. All the code is fine in D13836, but the value of the constant got updated (from "open" to "active") and the migration still used the old value. Correct any affected dashboards to use the proper constant. This only affected old dashboards: newly created ones use the right constant. Test Plan: Ran migration, verified that all active dashboards appeared on "Active Dashboards". Reviewers: chad Reviewed By: chad Maniphest Tasks: T9500 Differential Revision: https://secure.phabricator.com/D14223
2 lines
87 B
SQL
2 lines
87 B
SQL
UPDATE {$NAMESPACE}_dashboard.dashboard
|
|
SET status = 'active' WHERE status = 'open';
|