rcr plotform id shoudl be unique

This commit is contained in:
Ross
2024-01-16 22:33:32 +00:00
parent 03a07f802b
commit bfabde9ef6
+1 -1
View File
@@ -24,7 +24,7 @@ class Item(models.Model):
targeted_to_group = models.CharField(max_length=255, default="Targeted")
rcr_platform_id = models.CharField(max_length=255)
rcr_platform_id = models.CharField(max_length=255, unique=True)
category = models.ForeignKey("Category", on_delete=models.SET_NULL, null=True, blank=True)