PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

django.db.utils.IntegrityError:la colonna venue_city contiene valori null

Sembra che tu abbia aggiunto null=True dopo aver creato il file di migrazione. Perché venue_city non è un campo nullable nel tuo file di migrazione

Segui questi passaggi.

1) Drop venue_city & venue_country from your local table
3) Delete all the migration files you created for these `CharField to a ForeignKey` change
4) execute `python manage.py makemigrations`
5) execute 'python manage.py migrate'

Dovrebbe funzionare