django系列3 :创建模型

 

1创建模型

在我们简单的民意调查应用程序中,我们将创建两个模型:QuestionChoice。A Question有问题和出版日期。A Choice有两个字段:选择的文本和投票记录。每个Choice都与一个Question

这些概念由简单的Python类表示。编辑 polls/models.py文件,使其如下所示:

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.IntegerField(default=0)

 这里的choice和question是多对一的关系,所以choice里面有一个ForeignKey,关联了question.

 这里的CASCADE,是如果question表中的记录被删除,则choice表中对应的记录自动被删除

 这里的question_text等,是数据库列名,CharField 是Field的子类,用来告诉python要什么数据类型。

2.激活模型,将应用添加到项目中

  编辑mysite/settings.py  

INSTALLED_APPS = [
    'polls.apps.PollsConfig',
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
]

  然后运行命令

python manage.py makemigrations polls

  

 在运行命令:

python manage.py migrate

  

总结:

请记住进行模型更改的三步指南:

 

转载于:https://www.cnblogs.com/zhizhiyin/p/9706104.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值