We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on delete needs to be added to both the closing and opening where it's company = models.ForeignKey(PREMISES_MODEL, verbose_name=_('Company'))
as newer versions such as 2.0 require an on_delete now
company = models.ForeignKey(PREMISES_MODEL, verbose_name=_('Company'), on_delete=models.CASCADE)
The text was updated successfully, but these errors were encountered:
Yeah - This one's affecting me too! Any idea when the fix for this will be merged?
Sorry, something went wrong.
No branches or pull requests
on delete needs to be added to both the closing and opening where it's
company = models.ForeignKey(PREMISES_MODEL, verbose_name=_('Company'))
as newer versions such as 2.0 require an on_delete now
company = models.ForeignKey(PREMISES_MODEL, verbose_name=_('Company'), on_delete=models.CASCADE)
The text was updated successfully, but these errors were encountered: