fix wrong year on upgrade script

This commit is contained in:
Barış Soner Uşaklı
2018-09-21 23:14:55 -04:00
committed by GitHub
parent 24601694db
commit 7787c9b4bb

View File

@@ -6,7 +6,7 @@ var async = require('async');
module.exports = {
name: 'Revising minimum password strength to 1 (from 0)',
timestamp: Date.UTC(2017, 1, 21),
timestamp: Date.UTC(2018, 1, 21),
method: function (callback) {
async.waterfall([
async.apply(db.getObjectField.bind(db), 'config', 'minimumPasswordStrength'),