Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Heroku 上使用 PG 数据库的 Ruby on Rails 应用程序:我可以通过终端销毁数据库中的特定用户吗?谢谢!
heroku run console [--app=app_name]
然后运行普通用户查找/销毁:
User.destroy(1)
这比纯 SQL 方法更安全,因为它运行回调、销毁相关的相关对象等。
是的,您可以通过命令行从命令行执行此操作heroku run rails db,这将使您进入 psql 控制台。
heroku run rails db
从那里它只是一个DELETE FROM USERS WHERE... 声明
DELETE FROM USERS WHERE