Skip to content

Commit 87e9b4e

Browse files
nikomatsakisanp
authored andcommitted
migration: add Zoxc to the compiler team
1 parent 0a4ae30 commit 87e9b4e

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
DELETE FROM memberships m USING githubuser u, teams t
2+
WHERE
3+
m.fk_member = u.id AND
4+
m.fk_team = t.id AND
5+
u.login = 'Zoxc' AND t.ping = 'rust-lang/compiler';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
INSERT INTO memberships (fk_member, fk_team)
2+
SELECT u.id, t.id
3+
FROM githubuser u, teams t
4+
WHERE t.ping = 'rust-lang/compiler' AND
5+
u.login = 'Zoxc';

0 commit comments

Comments
 (0)