mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
9 lines
349 B
MySQL
9 lines
349 B
MySQL
|
/* PhabricatorObjectHasUnsubscriberEdgeType::EDGECONST = 23 */
|
||
|
/* PhabricatorProjectSilencedEdgeType::EDGECONST = 61 */
|
||
|
|
||
|
/* This is converting existing unsubscribes into disabled mail. */
|
||
|
|
||
|
INSERT IGNORE INTO {$NAMESPACE}_project.edge (src, type, dst, dateCreated)
|
||
|
SELECT src, 61, dst, dateCreated FROM {$NAMESPACE}_project.edge
|
||
|
WHERE type = 23;
|