ondras / wwwsqldesigner

WWW SQL Designer, your online SQL diagramming tool
https://sql.toad.cz/?keyword=online_library
BSD 3-Clause "New" or "Revised" License
2.87k stars 725 forks source link

Change Serial to Big Serial for IDs #253

Closed spdrman closed 7 years ago

spdrman commented 7 years ago

This will ensure the ID never exceeds the max size. With Serial, the DB can only handle 2 billion rows, which is not that much for a db. By switching to Big Serial, there is no longer any reason to worry about the limit being reached. All for the small cost of using an additional 4bytes per ID.

See this article

ondras commented 7 years ago

Thanks!