Im building a table with index=True where i would like the name to always be a unique index name possible using UUID as suffix .. something like ix__uuid
Below my code for table creation
add = Table('src_add_lookup', metadata,
Column('id', Integer, Sequence('seq_add', schema='can'), primary_key=True, index=True)
metadata.drop_all(engine, tables=[add]) # using 'tables' param to only create the necessary table
metadata.create_all(engine, tables=[add])
This will always create an index named ix_src_add_lookup_id that i woudl like to avoid.
IS there some method available for something like this ?