- Yes it can be changed.
- It depends on what you are developing.
integer vs biginteger
Most examples (Laravel) across the internet use integer for auto-incrementing and unsigned (user_id etc) columns. While I know it will take quite some time to exhaust 4,294,967,295 (4.2 billion [unsigned]) records, is there that much of a hit future proofing my projects with bigIncrements and bigInteger for my schema design? biginteger being 18,446,744,073,709,551,615 (18.4 quintillion [unsigned])
Can a integer column be converted to biginteger? If so can an auto-incrementing integer column be converted the same?
I think I read somewhere that WordPress now by default uses biginteger.
Would love to see what you guys think.
Please or to participate in this conversation.