diff --git a/resources/sql/patches/20130218.longdaemon.sql b/resources/sql/patches/20130218.longdaemon.sql new file mode 100644 index 0000000000..9fffd578d7 --- /dev/null +++ b/resources/sql/patches/20130218.longdaemon.sql @@ -0,0 +1,2 @@ +ALTER TABLE {$NAMESPACE}_daemon.daemon_log + CHANGE argv argv LONGTEXT NOT NULL COLLATE utf8_bin; diff --git a/src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php b/src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php index c6dcbd9bdf..dd677403b1 100644 --- a/src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php +++ b/src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php @@ -1133,6 +1133,10 @@ final class PhabricatorBuiltinPatchList extends PhabricatorSQLPatchList { 'type' => 'php', 'name' => $this->getPatchPath('20130218.updatechannelid.php'), ), + '20130218.longdaemon.sql' => array( + 'type' => 'sql', + 'name' => $this->getPatchPath('20130218.longdaemon.sql'), + ), ); }