I have the following model:
class Product(models.Model):
provinces = models.ManyToManyField('Province', related_name='formats')
By default, products can be sold in every province. How can I define the model "Product" so that every product created has all provinces by default?
Thanks!