i create a models in django , with ManyToMany relation , and i have a problem :
class KeyCat(models.Model):
category = models.CharField(max_length=255)
def __str__(self):
return self.category
class Keyword(models.Model):
category = models.ManyToManyField(KeyCat)
that create two table : "keycat", "keyword" and "keyword_category" i want to delete from "keywords_keyword_category" a row where id=1