mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05: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
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue