According to the documentation for MySQL CREATE INDEX :
CREATE INDEX maps to an ALTER TABLE statement to create indexes.
This way you can convert your example into an SQL statement:
ALTER TABLE table_name ADD UNIQUE INDEX idx_name (col_1, col_2, ...) USING BTREE
The result in the Percona schema modification instruction:
ADD UNIQUE INDEX idx_name (col_1, col_2, ...) USING BTREE
source share