Top "Django-syncdb" questions

`django-admin.

Django manage.py Unknown command: 'syncdb'

I'm trying to follow this tutorial but I'm stuck on the 5th step. When I execute [~/Django Projects/netmag$] python …

python django django-syncdb syncdb
Django/Python Beginner: Error when executing python manage.py syncdb - psycopg2 not found

I have Pythong2.6, psycopg2 and pgAdmin3 installed using Macports. My settings.py is: DATABASE_ENGINE = 'postgresql_psycopg2' # 'postgresql_psycopg2…

python django django-syncdb
Can I use a database view as a model in Django?

i'd like to use a view i've created in my database as the source for my django-view. Is this possible, …

django django-migrations django-syncdb
Automatically create an admin user when running Django's ./manage.py syncdb

My project is in early development. I frequently delete the database and run manage.py syncdb to set up my …

django automation django-syncdb
auth_user error with Django 1.8 and syncdb / migrate

When upgrading to Django 1.8 (with zc.buildout) and running syncdb or migrate, I get this message: django.db.utils.ProgrammingError: …

python django buildout django-syncdb django-1.8
Django flush vs sqlclear & syncdb

Can anyone tell if there is a difference between >manage.py flush # or reset and >manage.py sqlclear …

django reset flush django-syncdb syncdb
In django, how do I call the subcommand 'syncdb' from the initialization script?

I'm new to python and django, and when following the Django Book I learned about the command 'python manage.py …

python django in-memory-database django-syncdb
No migrations to apply

$python manage.py syncdb Operations to perform: Apply all migrations: admin, contenttypes, auth, sessions Running migrations: No migrations to apply. …

python django django-syncdb
Django/Python EnvironmentError?

I am getting an error when I try to use syncdb: python manage.py syncdb Error message: File "/usr/local/…

python django django-syncdb
manage.py syncdb doesn't add tables for some models

My second not-so-adept question of the day: I have a django project with four installed apps. When I run manage.…

python django django-models django-syncdb