mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
🎨 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:
parent
254b1a0632
commit
424f7fba0d
@ -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'}
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user