“update_or_create django” Respostas de código

Crie ou atualize os modelos Django

obj, created = Person.objects.update_or_create(
    first_name='John', last_name='Lennon',
    defaults={'first_name': 'Bob'},
)
# If person exists with first_name='John' & last_name='Lennon' then update first_name='Bob'
# Else create new person with first_name='Bob' & last_name='Lennon'
Shiny Swiftlet

update_or_create django

obj, created = Person.objects.update_or_create(
    first_name='John', last_name='Lennon',
    defaults={'first_name': 'Bob'},
)
# If person exists with first_name='John' & last_name='Lennon' then update first_name='Bob'
# Else create new person with first_name='Bob' & last_name='Lennon'
Confused Cassowary

Respostas semelhantes a “update_or_create django”

Perguntas semelhantes a “update_or_create django”

Mais respostas relacionadas para “update_or_create django” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código