mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
3a644cf6cc
Summary: Ref T1191. Long ago, Maniphest generated with 40-character mail keys. These prevent the migration to `bytes20`. We had about 300 of these on secure.phabricator.com from several years ago. Just truncate them. This adjusts reply-to addresses, but it's very likely that none are relevant anymore. Test Plan: Ran migration on `secure.phabricator.com` to truncate keys. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T1191 Differential Revision: https://secure.phabricator.com/D10615
2 lines
115 B
SQL
2 lines
115 B
SQL
UPDATE {$NAMESPACE}_maniphest.maniphest_task
|
|
SET mailKey = SUBSTRING(mailKey, 1, 20) WHERE LENGTH(mailKey) > 20;
|