pub fn unique_index_name(table: &str, columns: &[impl AsRef<str>]) -> String
Generate a standard unique index name for a table and columns.
Uses the convention uq_{table}_{columns} where columns are joined by underscore.
uq_{table}_{columns}