##// END OF EJS Templates
upgrade Rails to 4.2.7.1...
upgrade Rails to 4.2.7.1 git-svn-id: http://svn.redmine.org/redmine/trunk@15734 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11851:b764e398475c
r15352:f710d594e3b0
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