-
Notifications
You must be signed in to change notification settings - Fork 14
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
no such table: director_vehicle while makemigrations #2
Comments
If I manually create a table in db.sqlite3 with name "director_vehicle" and key "identifier", makemigrations passed but migrate will fail with table "director_vehicle" already exists `python3 manage.py migrate The above exception was the direct cause of the following exception: Traceback (most recent call last): |
Yeah, this trouble existed. workaround way: Comment uptane_django/director/director.py line89-92 uncomment line 93 and run. |
你好,我也遇到了同样的问题:django.db.utils.OperationalError: no such table: director_vehicle 当我注释掉89-92行,不注释93行时,运行,报如下错误: 请问,该如何解决此问题呢? |
89 try: |
This works! |
Please check indentetion |
The text was updated successfully, but these errors were encountered: