public static bool HasUniqueIndices(this TableSchema table, bool includePrimaryKey = false, bool includeIdentifiers = false)
 {
     return(table.GetUniqueIndicies(includePrimaryKey, includeIdentifiers).Count > 0);
 }