diff --git a/resources/sql/patches/20130924.mdraftkey.sql b/resources/sql/patches/20130924.mdraftkey.sql new file mode 100644 index 0000000000..677b97246d --- /dev/null +++ b/resources/sql/patches/20130924.mdraftkey.sql @@ -0,0 +1,2 @@ +ALTER TABLE {$NAMESPACE}_maniphest.maniphest_transaction_comment + DROP KEY `key_draft`; diff --git a/src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php b/src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php index 519d1ea15d..44f48dae0e 100644 --- a/src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php +++ b/src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php @@ -1624,6 +1624,10 @@ final class PhabricatorBuiltinPatchList extends PhabricatorSQLPatchList { 'type' => 'sql', 'name' => $this->getPatchPath('20130923.mrename.sql'), ), + '20130924.mdraftkey.sql' => array( + 'type' => 'sql', + 'name' => $this->getPatchPath('20130924.mdraftkey.sql'), + ), ); } }