I want to use my database to store the user’s Twitch id, but I can’t find a suitable storage size, such as a 4-byte int or an 8-byte bigint?
1 Like
Id’s are strings, with no documented max size, and while they currently use numerical characters there’s no guarantee that they wont start using letters at some point which is why they should be treated as strings and not ints.
2 Likes
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.