Issue with backing up data tables via CSV

Hi,

When importing a table via CSV, the ID numbers of every record change if any previous records were deleted. For example:

{id: 1, name: "apple"},
{id: 2, name: "banana"},
{id: 4, name: "grape"}

will become this when it’s exported then imported:

{id: 1, name: "apple"},
{id: 2, name: "banana"},
{id: 3, name: "grape"}

This is troublesome for apps that store user data with their ID, such as [WUT] World.

In [WUT] World, each post, comment, message, like, dislike, and coin transaction is linked to that user’s id number. Since some kids on here like to hack it, I have to download a CSV of the tables multiple times a day in case someone actually decides to take action (or if the app gets reported and I have to remix it).

While I can back up most user data, I have to reset the posts and followers of everyone because it’s stored to that user’s ID, and since the app allows users to delete their accounts, restoring follower and post data would make people follow the wrong users or attribute posts to the wrong user.