You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ForeignKeys defined in stripe/models.py do not explicitly define on_delete behaviour. This will become required in Django 2.0 and in the meantime throws django.utils.deprecation.RemovedInDjango20Warning in Django 1.9.
You can set these to the current default explicitly by adding on_delete=models.CASCADE to each ForeignKey.
The text was updated successfully, but these errors were encountered:
ForeignKeys defined in stripe/models.py do not explicitly define
on_delete
behaviour. This will become required in Django 2.0 and in the meantime throwsdjango.utils.deprecation.RemovedInDjango20Warning
in Django 1.9.You can set these to the current default explicitly by adding
on_delete=models.CASCADE
to each ForeignKey.The text was updated successfully, but these errors were encountered: