Skip to content

Instantly share code, notes, and snippets.

@overplumbum
Created November 21, 2012 15:04
Show Gist options
  • Save overplumbum/4125297 to your computer and use it in GitHub Desktop.
Save overplumbum/4125297 to your computer and use it in GitHub Desktop.
Sentry: Add users without teams to all the teams as admins
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