Django-数据模型
摘要:
修改model.py文件from django.db import models# Create your models here.class Question(models.Model): question_text = models.CharField(max_length=200) ... 阅读全文
posted @ 2015-11-30 11:10 One|Piece 阅读(335) 评论(0) 推荐(0) 编辑