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

Django创建模型_模型层

时间:2018-10-24 01:16:41      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:har   应用   git   HERE   publish   模型   spl   rom   name   

1.在项目Mysite下创建应用bms

2.在bms下的models.py文件中创建模型

from django.db import models
# Create your models here.
class Bookinfo(models.Model):
    book_id = models.AutoField(primary_key=True)
    book_category = models.CharField(max_length=32)
    book_name = models.CharField(max_length=64)
    book_author = models.CharField(max_length=32)
    book_price = models.DecimalField(max_digits=8, decimal_places=2)
    book_pubdate = models.DateField()
    book_publish = models.CharField(max_length=32)

技术分享图片

Django创建模型_模型层

标签:har   应用   git   HERE   publish   模型   spl   rom   name   

原文地址:https://www.cnblogs.com/apollo1616/p/9840354.html

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