Forum search turned up nothing, so here goes...
Is there any way to rename a user in SS? I hit up the ../db.view page and took a look at all the tables in the database, and it seems like this is not going to be an easy thing to do. In most database, there's a user table where every user has an ID associated, and then in all other database tables to which users are tied, the user_ID is used.
Not so in Subsonic, evidently. In the USER table, there's username, password, email, and then various pieces of internal data. But no user_id. And sure enough, in other tables like USER_SETTINGS, the full username is again the main column, not an ID.
Does this mean that one has to go change the username, manually via SQL, in all relevant SS tables in the database? If so, what are all those tables? I'm seeing the username as the main column in USER, USER_SETTINGS, CUSTOM_AVATAR, and even PLAYER. Seems like a lot of things could go wrong if one happens to miss a table. And there's definitely no GUI way to do this that I can see, within SS itself.
The reason I'd like to change the username, rather than simply create a new one, is to save various things like user history, amount uploaded/downloaded, etc.
Has anyone ever tried to do this, or have ideas? The best I can come up with is simply to manually plow through every single table that comes up from: SELECT * FROM INFORMATION_SCHEMA.SYSTEM_TABLES, and then update the username in every single table where it appears. But I still can't shake the feeling that something might break anyways.
Regards,
Supra92

