如何删除 Rails 数据库中的所有电子邮件?
我有一个批量邀请命令,用户可以在其中输入一堆电子邮件来邀请人们加入我的应用程序中的帐户。然而,到目前为止,每封电子邮件的前面都包含一个空格...
此后我为每封新电子邮件添加了一个 .strip,但我现在想要更新所有以前创建的帐户。
我正在heroku上运行该应用程序,所以我想这将是heroku控制台上的命令,我只是不想搞砸它,所以我在这里寻求帮助。
没关系,我已经弄清楚了。
User.all.each do |user|; user.update_attributes(:email => user.email.split); end
这就是解决方案。只是有点棘手,要弄清楚 Heroku 一次只能处理一行,这与实际的 Rails 控制台不同。
I have a batch invite command where users can enter a bunch of emails to invite people to an account in my app. However, up until now, it was including one space at the front of every e-mail...
I've since added a .strip for every new email, but I now want to update all previously created accounts.
I am running the app on heroku, so I'd imagine it will be a command at the heroku console, I just don't want to feck it up, so I'm asking for help here.
Nevermind, I figured it out.
User.all.each do |user|; user.update_attributes(:email => user.email.split); end
That was the solution. Just a little tricky figuring out that Heroku only works with one line at a time, unlike the actual rails console.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以通过rails控制台执行SQL。尝试
开始;更新用户设置电子邮件=修剪(电子邮件);犯罪;
If you can execute SQL via the rails console. Try
begin; update users set email = trim(email); commit;