NixNet/_posts/2019-01-30-removing-masto-u...

1.7 KiB

layout title subtitle description tags cover date
post Removing Masto usernames from PostgreSQL Give a Mastodonian their handle back Give a Mastodonian their handle back mysql cli sysadmin /assets/posts/mastodon.png 2019-01-30 13:16 -0500

The other day, I had a friend of mine create an account on my Mastodon instance. I made him an admin account thinking I'd have the ability to demote him if I needed to only to find that I couldn't. So I had him delete his account thinking that he'd be able to remake it with the same username only to find that he couldn't. This is the username he uses everywhere (like me with Amolith) so I wanted to get it back for him. I did some digging and found that I would have to delete the handle from Masto's PostgreSQL database. I'd never used postgres before so it was very new; a rundown of the basic commands is below along with the one I used to delete his username at the end.

NOTE: I don't know how this will affect your instance if the user had toots before they deleted their account. Handles federate from instance to instance and things could very well break if another instance had the user's information already. Thankfully, my friend was busy that day and hadn't even started configuring his account, much less tooted anything.

PostgreSQL Syntax

\l - list databases \c <database> - change databases \d - list tables \d+ <table> - list columns in the specified table select <column> from <table>; - show the entries in the specified column delete from <table> where <column> = '<user_handle>'; - delete the username

The command sequence I used was: \c mastodon delete from accounts where username='<handle>';