You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the PK of accesstoken table is using int type (as default django table id does). But this 32-bit field can only hold around 2 billions records. The keys will be used out in a year if you have 10 millions users who generate new keys on a daily basis.
Can we change the type from int to bigint? Or even better, can we use 'token' as the PK?