mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
3d457a53be
Summary: Fixes T4299, Add status dropdown to mock edit view Test Plan: Edit mock, close mock, thumbnail title should read (Disabled). Default mocks list should show only open mocks. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: chad, epriestley, Korvin Maniphest Tasks: T4299 Differential Revision: https://secure.phabricator.com/D9145
5 lines
184 B
SQL
5 lines
184 B
SQL
ALTER TABLE {$NAMESPACE}_pholio.pholio_mock
|
|
ADD COLUMN status VARCHAR(12) NOT NULL COLLATE utf8_bin;
|
|
|
|
UPDATE {$NAMESPACE}_pholio.pholio_mock
|
|
SET status = "open" WHERE status = "";
|