在Rails中同时运行唯一的迁移

时间:2018-06-29 18:25:43

标签: ruby-on-rails activerecord

只需确认一下,这是您如何标记迁移以同时运行唯一约束(活动记录4 +)

disable_ddl_transaction!

def change 
  add_index :strings, [:word, :user_id], unique: true, algorithm: :concurrently
end

1 个答案:

答案 0 :(得分:0)

请参考以下链接,您可能会对此有所了解https://robots.thoughtbot.com/how-to-create-postgres-indexes-concurrently-in