码迷,mamicode.com
首页 > 其他好文 > 详细

Django~Settings.py

时间:2016-02-22 11:58:01      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

 

 

配置

数据库

默认sqlite,

支持Mysql,postgresql,oracle

 

技术分享

 

更改时区

技术分享

 

查看表结构

.schema (SQLite),

display the tables Django created.

 

新建Models

models原始文件

技术分享

 

from django.db import models

# Create your models here.
class Qusetion(models.Model):
    question_text = models.CharField(max_length=200)
    pub_date = models.DateTimeField(date published)
    
class Choice(models.Model):
    question_text=models.ForeignKey(Qusetion,on_delete=models.CASCADE)
    choice_text=models.CharFiled(max_length=200)
    votes_text=models.ForeignKey(default=0)

 

activating models

技术分享

技术分享

技术分享

 

The sqlmigrate command takes migration names and returns their SQL:

技术分享

if you’re interested, you can also run python manage.py check; this checks for any problems in your project without making migrations or touching the database.

同步所有改变

技术分享

 

 

the three-step guide to making model changes

 

Playing with the API

manage.py shell

技术分享

 

 

技术分享

修改后再编译

Question----Qusetion   !!!!!

技术分享技术分享

 

在model中添加__str__methonds

技术分享

 

技术分享

技术分享

 


技术分享

Django Admin

Django~Settings.py

标签:

原文地址:http://www.cnblogs.com/lynclynn/p/5206492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!