I have a lot of data in the activerecord model and I want it's ID to keep organized sequentially even if I delete one record.
For example the ID in the table were 1, 2, 3, 4
and when I delete ID 2
it will be 1, 3, 4
I want it to automatically fill the deleted number (2)
, anyone know how to do that?