Allow BigInt size of autoincrement idField type #6969
MurzNN
started this conversation in
Feature requests
Replies: 2 comments
-
Here https://github.com/MurzNN/keystone/commits/idfield-overrides-2 is my patch that implements BigInt id field type, using idField override custom feature. |
Beta Was this translation helpful? Give feedback.
0 replies
-
And here #7188 is my attempt to implement this feature. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
At now
autoincrement
idField type have onlyInt
format, but it is not enough for large amount of data. Please add support forBigInt
database field format to extend limitation of max stored items number.As alternative we can use
cuid
oruuid
kind, but performance of that identifier types are several times worse, than with numeric ids, that especially signally in tables with many rows!So
BigInt
storage format is the most optimal way!Beta Was this translation helpful? Give feedback.
All reactions