I'm having a hard time finding the documentation for creating a unique dependency in a table where, for example, there are 2 columns and each one can have multiple similar values, but there must never be 2 rows where both columns have the same value (as in another row)...
in other words...
    colA       colB
row1  1          2  //this is ok
row2  1          3  //this is ok
row3  2          2  //this is ok
row4  2          2  //this would NOT be ok, because this is just like row 3, and that combination should be unique.