diefenbach / django-lfs

An online-shop based on Django
http://www.getlfs.com
BSD 3-Clause "New" or "Revised" License
622 stars 222 forks source link

Django 1.8 #183

Closed diefenbach closed 9 years ago

diefenbach commented 9 years ago

See also https://github.com/diefenbach/lfs-buildout-development/tree/django-1.8

pigletto commented 9 years ago

Regarding migration of South migrations to Django ones we should also create initial migrations as described here: https://docs.djangoproject.com/en/dev/topics/migrations/#upgrading-from-south

diefenbach commented 9 years ago

Yeah, I've read that too. We can do that, but I can't see any advantage or reason. Do you know why?

pigletto commented 9 years ago

If we don't have initial migrations then any further change in models will require creation of them anyway (prior to the real migration). It seems better to me to have clean baseline with all these migrations from the beginning. This way --fake will have to be done once during switch to new LFS release (eg. in lfs_migrate script).

diefenbach commented 9 years ago

Got it. I'll add them. Thx so far.