标签:数据库服务器 基础知识 use 结构 databases host 配置 约束 开发
DATABASES = {
‘default‘: {
‘ENGINE‘: ‘django.db.backends.mysql‘,
‘NAME‘: ‘test2‘,
‘USER‘: ‘用户名‘,
‘PASSWORD‘: ‘密码‘,
‘HOST‘: ‘数据库服务器ip,本地可以使用localhost‘,
‘PORT‘: ‘端口,默认为3306‘,
}
}
python manage.py inspectdb > app/models.py
标签:数据库服务器 基础知识 use 结构 databases host 配置 约束 开发
原文地址:http://www.cnblogs.com/huwei934/p/6978578.html