如何通过rails迁移创建新表,并为其
添加唯一索引?
在文档中,我发现在创建表之后如何添加索引,但是如何在同一个迁移文件中创建表和添加唯一索引?
以下是完整的过程:
生成迁移(rails生成迁移CreateFoos bar:string)
修改您的迁移看起来像这样:
class CreateFoos < ActiveRecord::Migration
def change
create_table :foos do |t|
t.string :bar,:null => false
t.index :bar,unique: true
end
end
end
运行rake db:migrate
原文链接:https://www.f2er.com/ruby/272781.html