Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upNodeNotFoundError Migration error(Python 3) #30
Comments
This comment has been minimized.
This comment has been minimized.
@javrasya let me know if you need more information |
This comment has been minimized.
This comment has been minimized.
After fiddling around i think i may have found the root problem and a workaround. so basically my 0001_initial.py was generating this
This migration does not exist in the source code (and i am not sure were is it coming from) so i changed the migration to:
I noticed then that there was one migration left to do (the actual 0007)
Hope this helps |
javrasya
self-assigned this
Oct 13, 2016
This comment has been minimized.
This comment has been minimized.
I think there is a problem with dependencies = [
('river', '0006_auto_20160524_0439'),
] I could reproduce your case with |
javrasya
changed the title
NodeNotFoundError Migration error
NodeNotFoundError Migration error(Python 3)
Oct 15, 2016
This comment has been minimized.
This comment has been minimized.
I create migrations with |
added a commit
that referenced
this issue
Oct 15, 2016
This comment has been minimized.
This comment has been minimized.
@psychok7 could you please test it with master branch, it supposed to be fixed, I commited the missing migration file. |
This comment has been minimized.
This comment has been minimized.
Please, do not forget to install it with --upgrade to delete previous django-river to reset migrations. Because you created 0007 in your workspace right. |
This comment has been minimized.
This comment has been minimized.
@javrasya oh ok, i will try to test it tomorrow or monday morning and let you know |
added a commit
that referenced
this issue
Oct 16, 2016
added a commit
that referenced
this issue
Oct 16, 2016
This comment has been minimized.
This comment has been minimized.
@javrasya i tested the latest commit against a database without django river but with data and everything is working. |
psychok7 commentedOct 13, 2016
Hi, i am trying django-river 0.8.2 + Django=1.10 and i am running into a migration error.
my model is:
here is the traceback:
Any ideas??