夹层:`manage.py createdb`创建的数据库在哪里
Mezzanine: where is the database created by `manage.py createdb`
我在夹层中有以下数据库设置:
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
,为什么系统可以工作?
我在夹层中有以下数据库设置:
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
,为什么系统可以工作?