python-django官方教程手把手(二)-连接数据库
python-django官方教程手把手(二)-连接数据库
1 执行数据库迁移,Migration, 成功后应该可以查看数据库
py manage.py migrate
打开数据库,可以看到表已经建立
数据库配置文件
2创建模型
from django.db import models
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerFiel
3 将模型生成到数据库
3.1 将应用添加到主配置
3.2 执行迁移
py manage.py makemigrations polls
3.3 生成迁移sql语句
py manage.py sqlmigrate polls 0001
3.4 再次运行migrate
py manage.py migrate
转载自:https://juejin.cn/post/7120507604719108104