Created
November 21, 2012 15:04
-
-
Save overplumbum/4125297 to your computer and use it in GitHub Desktop.
Sentry: Add users without teams to all the teams as admins
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
su -l postgres -c "psql sentry -c ' | |
INSERT INTO sentry_teammember (team_id, user_id, is_active, type, date_added) | |
SELECT t.id, u.id, true, 0, now() from sentry_team t, auth_user u | |
WHERE not exists (select 1 from sentry_teammember m where u.id = m.user_id); | |
'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment