摘要: 方案1 python manage.py shell In [3]: b1=Book.objects.create(title='python',pub='清华大学出版社',price=20,mar ...: ket_price=25) In [4]: b1 Out[4]: <Book: Book 阅读全文
posted @ 2021-08-07 18:05 yescarf 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 迁移时字段默认值 最好选择2显性显示数据修改情况,防止他人接手时存在黑匣子 数据库迁移文件混乱 执行迁移文件的记录会存在数据库中(表django_migrations) mysql> select * from django_migrations; + + + + + | id | app | na 阅读全文
posted @ 2021-08-07 17:49 yescarf 阅读(78) 评论(0) 推荐(0) 编辑
摘要: orm基础字段及选项 字段类型 from django.db import models # Create your models here. class Book(models.Model): title=models.CharField('书名',max_length=50,default='' 阅读全文
posted @ 2021-08-07 10:09 yescarf 阅读(63) 评论(0) 推荐(0) 编辑