Forem Creators and Builders 🌱

Discussion on: Removing users and it's articles

Collapse
 
citizen428 profile image
Michael Kohl • Edited

Apart from rails db:reset you can go to /admin/users and delete the users there, which will also remove their associated content.

Alternatively, you can do it from Rails console in a single command:

User.destroy_all
Enter fullscreen mode Exit fullscreen mode