Re: Unwelcome error!

2019-05-21 Thread Adam Parsons
You need to read the error message, it says there is no such table. This refers to a missing table in the database. Given it is referring to django_session, you have not run migrations yet. If you follow the Django project's official tutorial, it will walk you through that process in step 2

Re: Unwelcome error!

2019-05-20 Thread Abu Yusuf
delete your existing db and try to create makemigrations and migrate again. delete all the files in migrations folder also. You saw this error because your migrations weren't done properly. On Tue, May 21, 2019 at 4:21 AM 'Stephen Owen' via Django users < django-users@googlegroups.com> wrote: >

Re: Unwelcome error!

2019-05-20 Thread mahesh boini
Migrate your changes to db django_session is default django table In your case django looking for table but the table is not exist in the db. On Tue, 21 May 2019 at 05:56, Joe Reitman wrote: > You need to run makemigrations and migrate to create the tables django > uses. > > On Monday, May 20,

Re: Unwelcome error!

2019-05-20 Thread Joe Reitman
You need to run makemigrations and migrate to create the tables django uses. On Monday, May 20, 2019 at 5:22:08 PM UTC-5, Stephen Owen wrote: > > Hi, all, > I am creating a blog in Django, following lectures on You Tube. > Everything was working fine and then an error occurred that I could >

Re: Unwelcome error!

2019-05-20 Thread osman alexander samayoa ramirez
creo que creaste alguna tabla que pueda que no este colocada en tus apps o que no esta migrada en la base de datos El lun., 20 may. 2019 a las 16:21, 'Stephen Owen' via Django users (< django-users@googlegroups.com>) escribió: > Hi, all, > I am creating a blog in Django, following lectures on

Unwelcome error!

2019-05-20 Thread 'Stephen Owen' via Django users
Hi, all, I am creating a blog in Django, following lectures on You Tube. Everything was working fine and then an error occurred that I could fathom. So I have now just started a new project. One accessing localhost, I got the expected page but when I tried localhost I got this (attached.)