I'm working on the project with relatively big DB table(700K rows).
Mistake, I've made while designing DB schema. When rows were increasing, I had to increase ID's column type bigint(x).
Now it is bigint(44). I afraid of setting high x value because I thought that it can significantly slows down performance. Maybe I'm wrong..
Please help me in solving the problem.
What column type can I set once and forget about this issue?
What should I learn better in field of DB schema design?