Guest User

Untitled

a guest
Dec 18th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #!/bin/bash
  2. gitlab-rails console production
  3. user = User.find_by(email: 'emil_id')
  4. user.password = 'secret_pass' //at least 8 characters long
  5. user.password_confirmation = 'secret_pass'
  6. user.save!
Add Comment
Please, Sign In to add comment