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

2016-06-16 Thread Doug Donaldson
in the django_migrations table I made earlier in the sequence of migrations won't affect the decision to run the migrations as that decision has already been made earlier in plan creation. On Thursday, June 16, 2016 at 4:06:39 AM UTC-7, Doug Donaldson wrote: > > I have a website with

Breaking out internal app 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/840

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