For my application, I have user accounts that people can sign up. I use the devise gem for the setup.
devise
I also have a users page that lists out all the u
Or from rails c you can do something like this where "x" is user id.
user = User.where(id: x) user.destroy(1)