我在Mezzanine中有以下数据库设置:
DATABASES = {
"default": {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'lucidDB',
'USER': 'lucid',
'PASSWORD': 'xxxxxxxx',
'HOST': 'localhost',
'PORT': '',
}
}
我运行命令python manage.py createdb
,然后回答yes
问题Would you like to fake initial migrations? (yes/no):
。
注意:已安装south
。
我的问题:
我检查了postgres(postgres @ psql - > postgres =#\ l),但没找到数据库lucidDB
。但是,系统运行正常。数据库的确切位置在哪里?
假迁移是什么意思?
我还没有运行syncdb
或makemigrations --> migrate
,为什么系统有效?