mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
102befdede
Summary: Fixes T5090. Introduced getIcon into Handle stack which allows you to specify a per handle icon. getIcon falls back ot getTypeIcon. Test Plan: changed the icon on a project a bunch. verified transactions showed up. verified icon showed up in typeahead. verified icon showed up in tokens that were pre-generated (not typed in). units test passed. Reviewers: chad, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T5090 Differential Revision: https://secure.phabricator.com/D9264
5 lines
180 B
SQL
5 lines
180 B
SQL
ALTER TABLE {$NAMESPACE}_project.project
|
|
ADD COLUMN icon VARCHAR(32) NOT NULL COLLATE utf8_bin;
|
|
|
|
UPDATE {$NAMESPACE}_project.project
|
|
SET icon = "fa-briefcase" WHERE icon = "";
|