Re: Initial data with migrations vs fixtures

2016-12-01 Thread Tim Graham
Calling loaddata in a migration will work until you modify the model's fields. You can read more on Trac: https://code.djangoproject.com/ticket/24778 On Thursday, December 1, 2016 at 12:09:49 PM UTC-5, Tom Evans wrote: > > Hi all > > We're moving a project over to the latest release (well,

Initial data with migrations vs fixtures

2016-12-01 Thread 'Tom Evans' via Django users
Hi all We're moving a project over to the latest release (well, we're at 1.7 now, but that's the end goal anyway) and replacing South migrations with Django migrations. It looks like that fixtures are no longer thought of as the correct way of providing initial data. Is this because