-
-
Notifications
You must be signed in to change notification settings - Fork 340
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
Migrations do not work with Django 1.5.9 #64
Comments
@cosmokai It looks like south is trying to load the new style django migrations, I didn't foresee that... perhaps there is a way in which to exclude certain apps when you run south's |
Ahh check this out: https://docs.djangoproject.com/en/1.8/topics/migrations/#libraries-third-party-apps Apparently if I create a |
Actually, for backwards compatibility, it should be |
Wow, that was fast... Yes, I think it should work if django_migrations will be picked up, but I'm not sure if django does it. Where did you find that? Another solution would be to use south_migrations and migrations, and require a south installation of at least version 1.0. |
@cosmokai yep you're right - that ended up being the best solution. |
I can confirm that it works, thanks! |
Excellent! |
Is it needed to add something to settings.py to get this working? I'm using django 1.5.4 and it throws me an error because it's searching on the wrong directory. |
I got it working. This needed to be added to settings.py: SOUTH_MIGRATION_MODULES = {
'silk': 'silk.south_migrations',
} |
Hi, I'm using Django 1.5.9 and wanted to integrate silk since it should support Django 1.5 (see README).
Now, after I ran migrate I get this:
The migrations module was integrated in Django 1.7 I think, so how do I use silk with Django 1.5?
Thanks!
The text was updated successfully, but these errors were encountered: