如何在 HoboFields 中定义数据库索引?

发布于 2024-07-30 05:04:12 字数 333 浏览 4 评论 0原文

使用 HoboFields,我可以在自己的文件中声明模型的字段,如下所示

class User < ActiveRecord::Base

  fields do
    login :string
    persistence_token :string
  end

end

:我想知道是否有可以在普通 Rails 迁移中使用的 add_index 命令的等效语法。

With HoboFields, I can declare fields for my model in its own file, like this:

class User < ActiveRecord::Base

  fields do
    login :string
    persistence_token :string
  end

end

I'd like to know if there's equivalent syntax for the add_index command I can use in vanilla Rails migrations.

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

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

发布评论

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

评论(2

少女净妖师 2024-08-06 05:04:12
class User < ActiveRecord::Base 

  fields do 
    login :string 
    persistence_token :string, :index => true
  end 

end 
class User < ActiveRecord::Base 

  fields do 
    login :string 
    persistence_token :string, :index => true
  end 

end 
塔塔猫 2024-08-06 05:04:12

HoboFields 中尚不存在此功能,但我已在此线程中建议了它 看来它将在未来的版本中实现。

编辑:它已经实现,目前在这个实验分支中: http://github.com/tablatom /hobo/tree/indexgen。 当它包含在版本中时,我会更新答案。

This doesn't exist yet in HoboFields, but I've suggested it on this thread and it seems it's going to be implemented in a future release.

Edit: it's been implemented and is currently in this experimental branch: http://github.com/tablatom/hobo/tree/indexgen. I'll update the answer when it gets included in a release.

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