如何删除 Rails 数据库中的所有电子邮件?

发布于 2024-12-03 03:11:58 字数 397 浏览 0 评论 0原文

我有一个批量邀请命令,用户可以在其中输入一堆电子邮件来邀请人们加入我的应用程序中的帐户。然而,到目前为止,每封电子邮件的前面都包含一个空格...

此后我为每封新电子邮件添加了一个 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨曦÷微暖 2024-12-10 03:11:58

如果您可以通过rails控制台执行SQL。尝试

开始;更新用户设置电子邮件=修剪(电子邮件);犯罪;

If you can execute SQL via the rails console. Try

begin; update users set email = trim(email); commit;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文