Hi there,

I've installed Django and had no problems with sorting out the PostgreSQL 
connection, but I can't seem to get Mezzanine to create tables in the 
specific database. When I set up a new Django project I get 10 different 
tables, but Mezzanine doesn't seem to create any. I've run "python 
manage.py migrate" & "python manage.py createdb" but with to no avail.

I've made the below alteration to the settings.py file - is there anything 
else I should be doing? This feels like an incredibly basic issue and I 
don't know if I'm misunderstanding the process, so any feedback would be 
appreciated!

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'NAME_OF_DATABASE',
        'USER': 'NAME_OF_USER',
        'PASSWORD': '',
        'HOST': '127.0.0.1',
        'PORT': '5432',
    }
}

Cheers!

Rich

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to