Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15423110
D20063.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D20063.diff
View Options
diff --git a/resources/sql/autopatches/20190129.project.01.spaces.php b/resources/sql/autopatches/20190129.project.01.spaces.php
new file mode 100644
--- /dev/null
+++ b/resources/sql/autopatches/20190129.project.01.spaces.php
@@ -0,0 +1,18 @@
+<?php
+
+// See PHI1046. The "spacePHID" column for milestones may have fallen out of
+// sync; correct all existing values.
+
+$table = new PhabricatorProject();
+$conn = $table->establishConnection('w');
+$table_name = $table->getTableName();
+
+foreach (new LiskRawMigrationIterator($conn, $table_name) as $project_row) {
+ queryfx(
+ $conn,
+ 'UPDATE %R SET spacePHID = %ns
+ WHERE parentProjectPHID = %s AND milestoneNumber IS NOT NULL',
+ $table,
+ $project_row['spacePHID'],
+ $project_row['phid']);
+}
diff --git a/src/applications/project/editor/PhabricatorProjectTransactionEditor.php b/src/applications/project/editor/PhabricatorProjectTransactionEditor.php
--- a/src/applications/project/editor/PhabricatorProjectTransactionEditor.php
+++ b/src/applications/project/editor/PhabricatorProjectTransactionEditor.php
@@ -249,6 +249,17 @@
->rematerialize($new_parent);
}
+ // See PHI1046. Milestones are always in the Space of their parent project.
+ // Synchronize the database values to match the application values.
+ $conn = $object->establishConnection('w');
+ queryfx(
+ $conn,
+ 'UPDATE %R SET spacePHID = %ns
+ WHERE parentProjectPHID = %s AND milestoneNumber IS NOT NULL',
+ $object,
+ $object->getSpacePHID(),
+ $object->getPHID());
+
return parent::applyFinalEffects($object, $xactions);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 23, 1:04 PM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7396787
Default Alt Text
D20063.diff (1 KB)
Attached To
Mode
D20063: Correct a bug where milestone "spacePHID" columns could become desynchronized
Attached
Detach File
Event Timeline
Log In to Comment