使用电子邮件创建新用户作为软删除用户
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想您可以将
users
表的唯一性约束更改为:这将有效:
NULL
。NULL
删除日期,而已删除用户则具有该值。I suppose you could change the uniqueness constraint of your
users
table to be:This would effectively:
NULL
.NULL
deletion date, while the deleted user has a value there.啊,只需将旧电子邮件更改为类似
[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.