mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
bca0ad8fdd
Summary: Ref T2222. Make the "EditPro" controller accommodate diff updates, and support the transaction type. This one is pretty straightforward. Also make `revisionPHID` in the comments table nullable to fix the "Edit" action. Test Plan: - Created new revision. - Updated revision. - Tried to do some invalid stuff. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2222 Differential Revision: https://secure.phabricator.com/D8376
4 lines
170 B
SQL
4 lines
170 B
SQL
/* Make this column nullable. */
|
|
|
|
ALTER TABLE {$NAMESPACE}_differential.differential_transaction_comment
|
|
CHANGE revisionPHID revisionPHID VARCHAR(64) COLLATE utf8_bin;
|