Change UniqueConstraint concurrently

Hi there,

I have a model with unique constraints in a large production table (billions of rows).

I would like to change the unique constraints by adding an include attribute to leverage the index-only scan.

Any idea on how to migrate concurrently?
The migration file generated by Django uses the classic RemoveConstraint and AddConstraint, which I believe would make the table down for a while

Thanks