##// END OF EJS Templates
tagged version 3.2.4...
tagged version 3.2.4 git-svn-id: http://svn.redmine.org/redmine/tags/3.2.4@15903 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11851:b764e398475c
r15521:a6765ece867e 3.2.4
Show More
20130729070143_add_users_must_change_passwd.rb
9 lines | 228 B | text/x-ruby | RubyLexer
/ db / migrate / 20130729070143_add_users_must_change_passwd.rb
Jean-Philippe Lang
Option to force a user to change his password (#3872)....
r11851 class AddUsersMustChangePasswd < ActiveRecord::Migration
def up
add_column :users, :must_change_passwd, :boolean, :default => false, :null => false
end
def down
remove_column :users, :must_change_passwd
end
end