Re: Breaking internal app out into reusable app, migration question

2016-06-16 Thread Doug Donaldson
Further, my reading of the source seems to indicate that the migrations are loaded all at once for all INSTALLED_APPS as part of the MigrationLoader init and the decision about whether or not to run them made at this time as well in the migration_plan which leads me to believe that the change in

Breaking internal app out into reusable app, migration question

2016-06-16 Thread Doug Donaldson
I have a website with a number of smaller internal apps. I want to break some of them out into reusable apps and I'm starting with a simple one. It has a single model and a single initial migration representing it. Very simple, no foreign keys etc. I did this: http://stackoverflow.com/a/8408131