[Answer]-Having trouble adding to postgresql within Django site

1👍

if you are using Django > 1.7 try:

./manage.py makemigrations  
./manage.py migrate 

if its an older version of django you need to make sure you have contrib.contenttypes ( I’m not sure which is the first version of Django to come with contenttypes ) then run: ./manage.py syncdb

👤Rafael

Leave a comment