Re: Little trouble with migration.

2015-05-07 Thread Markus Holtermann
No need to apologize. If you think there is anything we can / should add to Django's documentation that would have either helped you to figure out the issue or that had prevented you from running into the issue in the first place, please go ahead and open an issue at

Re: Little trouble with migration.

2015-05-07 Thread Алексей Широков
Oh thank you very much for the clarification. I understood in what there was a mistake. And I apologize for my carelessness. Thanks! -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails

Re: Little trouble with migration.

2015-05-07 Thread Markus Holtermann
Hey there, app labels (i.e. what you specify in your AppConfig or in AUTH_USER_MODEL) are case sensitive. Thus either change AccountConfig.label to "account" (this affects all migrations that depend on your account app) or AUTH_USER_MODEL to "Account.User". I'd recommend to use lower case app

Re: Little trouble with migration.

2015-05-07 Thread Алексей Широков
Oh, sure! INSTALLED_APPS = [ ... 'isar.account', 'isar.account.auth', ... ] -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Little trouble with migration.

2015-05-07 Thread SK
you have added to the installed_apps? четверг, 7 мая 2015 г., 12:39:16 UTC+3 пользователь Алексей Широков написал: > > I have custom user model. > > settings.py > --- > ... > AUTH_USER_MODEL = 'account.User' > ... > > > also I have following AppConfig > > account/apps.py > ---

Little trouble with migration.

2015-05-07 Thread Алексей Широков
I have custom user model. settings.py --- ... AUTH_USER_MODEL = 'account.User' ... also I have following AppConfig account/apps.py --- class AccountConfig(AppConfig): name = 'isar.account' *label = 'Account'* verbose_name = 'Аккаунт' and when I call command