Ruby   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ruby-on-rails – migrations:t.references不允许指定索引名称大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
迁移中有以下几个:
create_table :model_with_a_long_name do |t|
  t.references :other_model_with_an_equally_long_name,index: true
end

这会产生一个索引,其长度不能超过Postgres.

有没有办法手动指定索引名称(不分开添加整数列和索引)?

类似以下内容:

create_table :model_with_a_long_name do |t|
  t.references :other_model_with_an_equally_long_name,index: true,index_name: 'model_and_other'
end

解决方法

根据 Rails code for references,您可以这样做,为索引提供一个Hash选项,您需要调用的名称:name,so:
t.references :my_field,index: { name: 'my_index_name' }

大佬总结

以上是大佬教程为你收集整理的ruby-on-rails – migrations:t.references不允许指定索引名称全部内容,希望文章能够帮你解决ruby-on-rails – migrations:t.references不允许指定索引名称所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: