File: 20160404080304_force_password_reset_during_setup.rb

package info (click to toggle)
redmine 6.0.6%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 20,104 kB
  • sloc: ruby: 116,318; javascript: 12,885; sh: 460; perl: 303; python: 166; makefile: 30
file content (9 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
class ForcePasswordResetDuringSetup < ActiveRecord::Migration[4.2]
  def up
    User.where(login: "admin", last_login_on: nil).update_all(must_change_passwd: true)
  end

  def down
    User.where(login: "admin", last_login_on: nil, must_change_passwd: true).update_all(must_change_passwd: false)
  end
end