mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
9 lines
348 B
MySQL
9 lines
348 B
MySQL
|
/* These are here so `grep` will find them if we ever change things: */
|
||
|
|
||
|
/* PhabricatorEdgeConfig::TYPE_PROJ_MEMBER = 13 */
|
||
|
/* PhabricatorEdgeConfig::TYPE_OBJECT_HAS_SUBSCRIBER = 21 */
|
||
|
|
||
|
INSERT IGNORE INTO {$NAMESPACE}_project.edge (src, type, dst, dateCreated)
|
||
|
SELECT src, 21, dst, dateCreated FROM {$NAMESPACE}_project.edge
|
||
|
WHERE type = 13;
|