Re: [mezzanine-users] database table for app not found

2017-09-15 Thread Bernie Caessens
Hi Ken, Thanks for your answer. I did indeed forget to migrate the database to use my user model. Once I ran: python manage.py makemigrations myapp python manage.py migrate Everything was working fine! Maybe a single line in the docs like (don't forget to migrate your database + with your li

Re: [mezzanine-users] database table for app not found

2017-09-08 Thread Ken Bolton
Hi Bernie, That error likely means that you need to create a schema migration for your `Users` model and apply that migration to your database. https://docs.djangoproject.com/en/1.10/topics/migrations/. - ken On Fri, Sep 8, 2017 at 10:06 AM, Bernie Caessens wrote: > Hi, > > I am setting up my

[mezzanine-users] database table for app not found

2017-09-08 Thread Bernie Caessens
Hi, I am setting up my first mezzanine based site and ran into some troubles using the mezzanine.accounts app. I have followed the steps about profiles and accounts in the mezzanine manual as found here . I have models.py in my app directory,