如何在 HoboFields 中定义数据库索引?
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.