I just switched from Sqlite to postgres. Everything is working except that when I open PgAdmin III all tables are still empty. I really wonder where are my data?
In my settings file I have:
DATABASES = {
'default': {
#'ENGINE': 'django.db.backends.sqlite3',
#'NAME': os.path.join(BASE_DIR, 'dbsqlite3'),
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'postgres',
'USER': 'postgres',
'PASSWORD': (secret),
'HOST': 'localhost',
}
}
So how can I check wether it is using the right database, where are my data?
I cannot find any tables in postgres. Please help me and tell me what I am getting wrong here.
