Skip to content

Instantly share code, notes, and snippets.

@MnifR
Created May 27, 2020 16:48
Show Gist options
  • Save MnifR/21c199e6e137834df3822270988d9d33 to your computer and use it in GitHub Desktop.
Save MnifR/21c199e6e137834df3822270988d9d33 to your computer and use it in GitHub Desktop.
Gitlab Migration
gitlab-rails dbconsole
UPDATE projects SET runners_token = null, runners_token_encrypted = null;
UPDATE application_settings SET runners_registration_token_encrypted = null;
UPDATE namespaces SET runners_token = null, runners_token_encrypted = null;
UPDATE ci_runners SET token = null, token_encrypted = null;
UPDATE ci_builds SET token = null, token_encrypted = null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment