mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
26127b9c5f
Summary: Allows users set an icon (for reuse on upcoming home) for their dashboard based on 16 descriminating choices. Test Plan: Create a new dashboard, set new icon. Edit an existing dashboard, set icon. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D17042
5 lines
148 B
SQL
5 lines
148 B
SQL
ALTER TABLE {$NAMESPACE}_dashboard.dashboard
|
|
ADD icon VARCHAR(32) NOT NULL;
|
|
|
|
UPDATE {$NAMESPACE}_dashboard.dashboard
|
|
SET icon = 'fa-dashboard';
|