Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
383 views
in Q2A Core by
What is the max value question number can reach and what happens after it reaches max value?

1 Answer

0 votes
by
 
Best answer
It's an INT UNSIGNED column in MySQL so the maximum is 4,294,967,295 (over 4 billion) - if you get above that, there's always a possibility of changing the column type!
by
thats very large no. thanks! I guess you are also using unsigned int for user points.
by
Actually, the user points is a signed integer, because of a MySQL bug, so the limit is about 2 billion instead. Should still be sufficient I hope.
...