Migracja i where w add_index

Czy można przekazać opcje where w add_index aby uzyskać:

CREATE UNIQUE INDEX test_index
ON buyers
USING btree
(name, is_first)
WHERE is_first = true; <------------------- ?

Coś jak: add_index :buyers, [:name, :is_first], unique: true, ???

Pozdrawiam

Nie, zostaje Ci tylko execute “CREATE itd…”

Może to https://github.com/mlomnicki/redhillonrails_core#partial-indexes-indexes-with-conditions ?

update: https://github.com/rails/rails/pull/4956