mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
9c82881cac
Summary: Fixes T8483. I did this incorrectly in D13159, by doing it correctly first and then editing it carelessly. For most transaction types, it didn't matter, but did for inline state. Also, clean up any bad inline state transactions. Test Plan: - Ran migration, bad transactions vanished. - Marked some inline comments as done. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T8483 Differential Revision: https://secure.phabricator.com/D13226
4 lines
190 B
SQL
4 lines
190 B
SQL
/* This cleans up some errant transactions, see T8483. */
|
|
|
|
DELETE FROM {$NAMESPACE}_differential.differential_transaction
|
|
WHERE transactionType = 'core:inlinestate' AND newValue = 'null';
|