Currently, Django models only support a single-column primary key. If you don't specify primary_key = True for the field in your model, Django will automatically create a column id as a primary key.
The attribute unique_together in class Meta is only a constraint for your data.