“ExtrayKey en Delete Django” Código de respuesta

Django Foreign Key Field en Eliminar no hacer nada

from django.db import models

class Car(models.Model):
    manufacturer = models.ForeignKey('Manufacturer',on_delete=models.DO_NOTHING,)

class Manufacturer(models.Model):
    pass
Trained Tuna

ExtrayKey en Delete Django

When an object referenced by a ForeignKey is deleted, 
Django will emulate the behavior of the SQL constraint 
specified by the on_delete argument.

Options: 
1. CASCADE
2. PROTECT
3. RESTRICT
4. SET_NULL
5. SET_DEFAULT
6. SET(...)
7. DO_NOTHING
Foolish Flatworm

Respuestas similares a “ExtrayKey en Delete Django”

Preguntas similares a “ExtrayKey en Delete Django”

Más respuestas relacionadas con “ExtrayKey en Delete Django” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código