mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
7c2a7d0365
Summary: Modernize remaining edges to subclass `PhabricatorEdgeType`. Largely based on D11045. Test Plan: Browsed around and performed various actions include subscribing, unsubscribing and watching. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D11116
8 lines
362 B
SQL
8 lines
362 B
SQL
/* These are here so `grep` will find them if we ever change things: */
|
|
|
|
/* PhabricatorProjectProjectHasMemberEdgeType::EDGECONST = 13 */
|
|
/* PhabricatorObjectHasSubscriberEdgeType::EDGECONST = 21 */
|
|
|
|
INSERT IGNORE INTO {$NAMESPACE}_project.edge (src, type, dst, dateCreated)
|
|
SELECT src, 21, dst, dateCreated FROM {$NAMESPACE}_project.edge
|
|
WHERE type = 13;
|