🎨 use bigInteger as type for brute schema

- i thought of keeping our schema, because it might be less confusing
- it's basically the same config brute-knex uses as default
- see last commit why we are using this type definition
This commit is contained in:
kirrg001 2016-11-10 11:50:23 +01:00
parent 254b1a0632
commit 424f7fba0d

View File

@ -236,9 +236,9 @@ module.exports = {
},
brute: {
key: {type: 'string'},
firstRequest: {type: 'dateTime'},
lastRequest: {type: 'dateTime'},
lifetime: {type: 'dateTime'},
firstRequest: {type: 'bigInteger'},
lastRequest: {type: 'bigInteger'},
lifetime: {type: 'bigInteger'},
count: {type: 'integer'}
}
};