go2null / redmine_account_policy

Password Expiry and other enhancements
GNU General Public License v3.0
3 stars 13 forks source link

`old_salts` column cannot accomodate long salts #42

Open go2null opened 6 years ago

go2null commented 6 years ago

from http://www.redmine.org/plugins/redmine_account_policy by Ivan Tsybanenko 6 months ago

Mysql2::Error: Column length too big for column 'old_salts' (max = 21845); 

use BLOB or TEXT instead:

ALTER TABLE `users` ADD `old_salts` varchar(59520)

Change line 10 in /db/migrate/002_add_old_salts_to_users.rb from:string to :text. Migration is OK