mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36: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: {
|
brute: {
|
||||||
key: {type: 'string'},
|
key: {type: 'string'},
|
||||||
firstRequest: {type: 'dateTime'},
|
firstRequest: {type: 'bigInteger'},
|
||||||
lastRequest: {type: 'dateTime'},
|
lastRequest: {type: 'bigInteger'},
|
||||||
lifetime: {type: 'dateTime'},
|
lifetime: {type: 'bigInteger'},
|
||||||
count: {type: 'integer'}
|
count: {type: 'integer'}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue