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