I created review for development branch in phabricator, updated it several times and than pushed branch for testing. Review was not finished but phabricator automatically closed it.
I can create another differential review, but all comments and updates will be in old...
So is there a way to reopen closed review?
I knew there was a better way!
EDIT: While the old answer works... it is not how to do this. Instead do this:
No need to hack the database.
Also, take a look at the repository settings, to set up auto closing the way you want it.
I have set Autoclose to Enabled, and Autoclose Branches to master. That way only pushes to origin/master will autoclose a differential review.
---------OLD Answer--------
What sberry is suggesting is to SSH into your server, and open an MySql prompt:
mysql> USE phabricator_differential;
mysql> select status from differential_revision where id=5; (If your revision is D5 for example)
Notice that your status is not 0. It is most likely 3 for closed.
mysql> update differential_revision set status=0 where id=5;
Now your revision is open again.
I feel that this is quite cumbersome, but never the less it achieves the goal. I hope there is somebody who can suggest a better way to do it.