Last active
May 29, 2019 09:52
-
-
Save bsingr/a5fba28064a73446f1565df91665fc8d to your computer and use it in GitHub Desktop.
Gitlab Migrations / Hacks
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
# use `gitlab-rails console` | |
JiraService.where("properties LIKE '%[email protected]'").each do |j| | |
j.url = JIRA_API_URL | |
j.username = JIRA_USER_EMAIL_ADDRESS | |
j.password = JIRA_USER_API_TOKEN | |
j.save | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment