Re: django 1.8 upgrade custom user model syncdb

2015-04-09 Thread Jochen Wersdoerfer
On Wednesday, April 8, 2015 at 5:46:42 PM UTC+2, Markus Holtermann wrote: > > > glad it works now. In that case you want to look at > https://docs.djangoproject.com/en/1.8/ref/settings/#migration-modules > and place the migrations somewhere in your project. Otherwise the > migrations end up in

Re: django 1.8 upgrade custom user model syncdb

2015-04-08 Thread Markus Holtermann
Hey Jochen, glad it works now. In that case you want to look at https://docs.djangoproject.com/en/1.8/ref/settings/#migration-modules and place the migrations somewhere in your project. Otherwise the migrations end up in your virtualenv and are not available when you deploy the application. Best

Re: django 1.8 upgrade custom user model syncdb

2015-04-08 Thread Jochen Wersdoerfer
On Wednesday, April 8, 2015 at 4:56:43 PM UTC+2, Jochen Wersdoerfer wrote: > > > There’s an initial migration for my custom user model in accounts.models, > so the accounts_pixolususer table should have been created. The syncdb > command breaks while adding a constraint to an app without migrations

django 1.8 upgrade custom user model syncdb

2015-04-08 Thread Jochen Wersdoerfer
Hi *, I’m trying to upgrade to django 1.8, but running into some app-dependency issues: http://pastebin.com/uvKtBtNa There’s an initial migration for my custom user model in accounts.models, so the accounts_pixolususer table should have been created. The syncdb command breaks while adding a cons