添加索引:通过生成迁移,在rails上的ruby中的列是唯一的

时间:2013-05-08 17:33:39

标签: ruby-on-rails database ruby-on-rails-3.2 migration

我知道我可以触摸迁移并添加

add_index :table_name, :column_name, :unique => true

但正确的rails migration命令如何生成呢?

rails g migration add_index_to_column_name :column_name, :unique => true

是吗?

在我的特例中,我有一个表客户

  t.integer :customerID
  t.string :surname
  t.string :first_name
  t.string :phone

我想将customerID设置为唯一。试图

rails g migration AddIndexToCustomers :customerID, :unique => true 

但是,如果我在此之后查看我的迁移文件,它看起来不正确,请看:

def change
    add_column :customers, :, :customerID,
    add_column :customers, :, :unique
    add_column :customers, :=, :string
  end

有任何想法或建议吗?

1 个答案:

答案 0 :(得分:34)

从Rails 3.2开始,您可以使用:

 rails g migration add_index_to_table_name column_name:uniq

来自http://guides.rubyonrails.org/3_2_release_notes.html

的示例
 rails g scaffold Post title:string:index author:uniq price:decimal{7,2}

upd 我很抱歉。如果不传递默认类型,则为string。你可以自己传递类型。

column_name:type:uniq

因此,您的示例应如下所示:

rails g migration add_index_to_customers customerID:integer:uniq