Rails3 Devise 身份验证 迁移

发布于 2024-11-08 21:22:45 字数 240 浏览 0 评论 0原文

我一直在思考如何最适合我的新应用程序来表示数据库中的用户表。

我注意到一个名为如下的迁移:

20110512234640_devise_create_users.rb

这是设备在安装时创建的东西吗?或者我可以使用我手写的更简单的用户表迁移吗?

人们通常如何配置 Devise,并且仍然能够向用户表添加其特定应用程序可能需要的额外列?

谢谢, 亚历克斯

I have been messing around with how it will be best for my new application to represent the users table in the database.

I noticed a migration named like this:

20110512234640_devise_create_users.rb

Is that something that Device creates upon its install? Or can I just use a simpler users table migration that I'd write by hand?

How do people usually configure Devise and still be able to add on extra columns to the users table which their particular applications might need?

Thanks,
Alex

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

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

发布评论

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

评论(2

手心的温暖 2024-11-15 21:22:45

通常,您可以创建更多迁移,将自己的字段添加到设计使用表中(这是为了使设计迁移保持清晰和简单)

Usually you can create on more migration to add your own fields to Devise used table (this is to keep devise migration clear and simple)

女中豪杰 2024-11-15 21:22:45

你是对的,这是由 Devise 自动生成的迁移,它允许您更轻松地选择您的 Devise 模块,因为默认模块已添加到迁移中,其他模块也在那里但已注释。

当然,您可以使用手写的用户迁移。

就我个人而言,我使用生成的迁移来添加我自己的额外字段。但使用自定义用户迁移文件是相同的。

You're right, it is an automatically generated migration by Devise which allows you to choose your Devise modules more easily since default modules are added to the migration and others are there too but commented.

Of course, you can use a written-by-hand user migration.

Personally, I use that generated migration to add my own extra fields. But using a custom user migration file is the same.

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