I have a model:
class MyModel(models.Model):
name = models.CharField(max_length=10)
nickname = models.CharField(max_length=10)
title = models.CharField(max_length=10)
score = models.CharField(max_length=10)
class Meta:
unique_together = ['name', 'nickname']
What is the impact of changing unique_together
to
unique_together = ['name', 'title']
Should I be careful before deploying this update? There are more than 150.000 users online at the same time, what could happen in the worst case?