Rails ActiveRecord::Migration what is the difference between index: true and add_index?

前端 未结 2 747
独厮守ぢ
独厮守ぢ 2021-02-07 01:36

What is the difference between

t.boolean :is_live, index: true

and

add_index :table_name, :is_live

If there i

2条回答
  •  梦毁少年i
    2021-02-07 01:53

    In short: both do the same job. ìndex: true` just saves you an additional line. Look here https://github.com/rails/rails/pull/5262#issuecomment-4329571

提交回复
热议问题