mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
6 lines
198 B
MySQL
6 lines
198 B
MySQL
|
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`);
|