Re: Can migrated apps depend on unmigrated apps?

2015-02-20 Thread Carsten Fuchs
Hi Collin, thank you very much for your reply! Am 19.02.2015 um 19:35 schrieb Collin Anderson: If you haven't yet, you could try generating migrations for the unmigrated app, and reference them using MIGRATION_MODULES. I've tried this, and my real problem is that I have problems with this

Re: Can migrated apps depend on unmigrated apps?

2015-02-19 Thread Collin Anderson
Let me paste the relevant parts for you: > > > > »Be aware, however, that unmigrated apps cannot depend on migrated apps, > [...]« > > This explains that unmigrated apps cannot depend on migrated apps. > > My question is about the opposite case: Can migrated apps depend on

Re: Can migrated apps depend on unmigrated apps?

2015-02-17 Thread Carsten Fuchs
cannot depend on migrated apps, [...]« This explains that unmigrated apps cannot depend on migrated apps. My question is about the opposite case: Can migrated apps depend on unmigrated apps? I've explained the apparent problem in greater detail in my original post. Best regards, Carsten -- You

Re: Can migrated apps depend on unmigrated apps?

2015-02-17 Thread Michael Pöhn
On 17.02.2015 21:29, Carsten Fuchs wrote: > Hi all, > > Am 04.02.2015 um 18:26 schrieb Carsten Fuchs: >> can apps that use migrations depend on unmigrated apps? > > Anyone please? > > It seems like this works in practice, but this still looks like a > contradiction to me, and I would still be

Re: Can migrated apps depend on unmigrated apps?

2015-02-17 Thread Carsten Fuchs
Hi all, Am 04.02.2015 um 18:26 schrieb Carsten Fuchs: can apps that use migrations depend on unmigrated apps? Anyone please? It seems like this works in practice, but this still looks like a contradiction to me, and I would still be interested in some feedback for a firmer foundation for

Can migrated apps depend on unmigrated apps?

2015-02-04 Thread Carsten Fuchs
n turn it seems to imply that migrated apps *can* depend on unmigrated apps, but is that correct? In the docs example where `books` have a foreign key and thus depend on `authors`, does it really work if `authors` is unmigrated? How would it be able to run the `authors` migration to create the