idiotricks

Results 1 issues of idiotricks

When I add protect to on_delete in one of the FK fields, for example: ```python class StockIn(Timestamp): .... supplier = models.ForeignKey( Supplier, on_delete=models.PROTECT, related_name='supplierstockin', blank=True, null=True ) ``` and when...