使用电子邮件创建新用户作为软删除用户

发布于 2024-11-25 09:21:55 字数 171 浏览 1 评论 0原文

我正在使用 ActsAsParanoid 软删除用户。删除(软)用户后,我的客户想要创建具有相同电子邮件 ID 的用户。但由于电子邮件列是唯一的,它会生成唯一字段错误。所以我的问题是我们可以设置唯一性吗仅当deleted_at 列为空时,email 列。

如果您不明白我的问题,请回复。

I am using ActsAsParanoid for soft deleting users.After deleting(soft) a user, my client wants to create user with same email id.But it generating unique field error since email column is unique.So my question is can we set the uniqueness for email column only if the deleted_at column is null.

Pls reply if u dont understand my question.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

天冷不及心凉 2024-12-02 09:21:55

我想您可以将 users 表的唯一性约束更改为:

UNIQUE (email, deletion_date)

这将有效:

  • 对于标准(未删除)用户,保证他们拥有唯一的电子邮件地址,因为他们的删除日期可能都是NULL
  • 对于已删除的用户,不对电子邮件地址做出任何保证,因为它们都有唯一的删除日期。
  • 对于新用户,允许他们使用已删除用户拥有的电子邮件地址,因为新用户将具有 NULL 删除日期,而已删除用户则具有该值。

I suppose you could change the uniqueness constraint of your users table to be:

UNIQUE (email, deletion_date)

This would effectively:

  • For standard (non-deleted) users, guarantee they have unique email addresses, since their deletion dates would presumably all be NULL.
  • For deleted users, not make any guarantee about email addresses, since they all have unique deletion dates.
  • For new users, allow them to use an email address that a deleted user has, since the new user will have a NULL deletion date, while the deleted user has a value there.
兔姬 2024-12-02 09:21:55

啊,只需将旧电子邮件更改为类似

[email protected]_deleted

这样即可如果您需要查看旧电子邮件,则删除下划线之前的所有内容。

换句话说,这里有新用户创建新帐户。

可能在后台有一个突变器添加了在旧帐户上删除的下划线。

删除下划线只是一个例子。

Ah, just change old email to something like

[email protected]_deleted

That way if you need to view the old email it's everything before the underscore deleted.

In other words here have new user create new account.

Probably have a mutator in the background add the underscore deleted on the old account.

Underscore deleted just an example.

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