mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
70a5ec600d
Summary: Fixes T3579 As a basic overview, this enables the author of a question to open/close a question. Other bits; - Add "Open" filter to the builtin queries - Add "Status" to search form - Refactor ponder constants - Add coloured bars for different question statuses Test Plan: - Open/Close questions - Search for some bits - Use filters Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T3579 Differential Revision: https://secure.phabricator.com/D6590 Conflicts: src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
5 lines
198 B
SQL
5 lines
198 B
SQL
ALTER TABLE {$NAMESPACE}_ponder.ponder_question
|
|
ADD COLUMN `status` INT(10) UNSIGNED NOT NULL AFTER `authorPHID`;
|
|
|
|
ALTER TABLE {$NAMESPACE}_ponder.ponder_question
|
|
ADD INDEX `status` (`status`);
|