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 change unique_togetheron
unique_together = ['name', 'title']
Should I be careful before deploying this update? There are currently more than 150,000 users online, what could happen in the worst case?
source
share