Skip to content
New issue

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

TypeError: __init__() missing 1 required positional argument: 'on_delete' #10

Closed
t04st3r opened this issue Feb 22, 2019 · 1 comment
Closed

Comments

@t04st3r
Copy link

t04st3r commented Feb 22, 2019

I have this error after pip install when I try to apply migrations

pip install django-tracking-analyzer

python manage.py migrate tracking_analyzer

Traceback (most recent call last): File "manage.py", line 15, in <module> execute_from_command_line(sys.argv) File "/home/raffaele/PycharmProjects/my_website/venv/lib/python3.6/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line utility.execute() File "/home/raffaele/PycharmProjects/my_website/venv/lib/python3.6/site-packages/django/core/management/__init__.py", line 357, in execute django.setup() File "/home/raffaele/PycharmProjects/my_website/venv/lib/python3.6/site-packages/django/__init__.py", line 24, in setup apps.populate(settings.INSTALLED_APPS) File "/home/raffaele/PycharmProjects/my_website/venv/lib/python3.6/site-packages/django/apps/registry.py", line 112, in populate app_config.import_models() File "/home/raffaele/PycharmProjects/my_website/venv/lib/python3.6/site-packages/django/apps/config.py", line 198, in import_models self.models_module = import_module(models_module_name) File "/usr/lib/python3.6/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "<frozen importlib._bootstrap>", line 994, in _gcd_import File "<frozen importlib._bootstrap>", line 971, in _find_and_load File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked File "<frozen importlib._bootstrap>", line 665, in _load_unlocked File "<frozen importlib._bootstrap_external>", line 678, in exec_module File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed File "/home/raffaele/PycharmProjects/my_website/venv/lib/python3.6/site-packages/tracking_analyzer/models.py", line 15, in <module> class Tracker(models.Model): File "/home/raffaele/PycharmProjects/my_website/venv/lib/python3.6/site-packages/tracking_analyzer/models.py", line 33, in Tracker content_type = models.ForeignKey(ContentType) TypeError: __init__() missing 1 required positional argument: 'on_delete'

I believe it is related to the fact that since Django 2.x, on_delete is required on ForeignKey()
Docs

@t04st3r
Copy link
Author

t04st3r commented Feb 22, 2019

Sorry already fixed on cd0cbc5c9e81bb7baf8f4b75abf4af00330ddf96

@t04st3r t04st3r closed this as completed Feb 22, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant