1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00
phorge-phorge/resources/sql/patches/20130727.ponderquestionstatus.sql
Gareth Evans 70a5ec600d Allowing Closing of questions
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
2013-07-27 18:41:03 -07:00

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`);