honzakral / django-threadedcomments

django-threadedcomments is a simple yet flexible threaded commenting system for Django.
BSD 3-Clause "New" or "Revised" License
622 stars 165 forks source link

Cannot run the example #86

Closed icruces closed 6 years ago

icruces commented 7 years ago

Hi,

I have been trying to run the example but I cannot make it work. I am using Django 1.10.5 and when I try to access to the home page I get:

no such table: core_message

I have installed django-contrib-comments and run the migrations.

I can access to the admin page though, but the user/password: admin/admin doesn't work either.

Thanks.

rodolphopivetta commented 7 years ago
# on manage.py path
$ python manage.py makemigrations core
$ python manage.py migrate
$ python manage.py runserver
lin344902118 commented 7 years ago

add a python-package named migrations and then run command makemigrations,migrate to create to create the table

vdboor commented 6 years ago

Thanks, I've fixed the example app!