Run manage.py Task python3 manage.py makemigrations 只需要敲命令:makemigrations(記錄數(shù)據(jù)庫的修改記錄) python3 manage..."/>
您好,登錄后才能下訂單哦!
1 orm介紹
1 tools--->Run manage.py Task
python3 manage.py makemigrations
只需要敲命令:makemigrations(記錄數(shù)據(jù)庫的修改記錄)
python3 manage.py migrate
只需要敲命令:migrate(把數(shù)據(jù)同步到數(shù)據(jù)庫)
2 orm能干和不能干的事
1 能創(chuàng)建數(shù)據(jù)表,新增,刪除字段
創(chuàng)建表:
在models.py中,定義一個類,并且繼承models.Model
例如:
from django.db import models class User(models.Model): id=models.AutoField(primary_key=True) user=models.CharField(max_length=32) password=models.CharField(max_length=32)
2 不能創(chuàng)建數(shù)據(jù)庫
3 orm增加字段:(注意數(shù)據(jù)庫遷移命令2條)
注意:后來增加的字段,需要有默認值
phone=models.CharField(max_length=64,default='120')
若沒有默認值的話,會報出一個提示:
1:這里可以手動輸入添加一個默認值(需要用引號包裹)
2:退出后,在字段中添加默認值
phone=models.CharField(max_length=64,default='120')
數(shù)據(jù)庫表中:
4 刪除字段
注釋掉字段,執(zhí)行數(shù)據(jù)庫遷移命令
5 修改數(shù)據(jù)
直接修改字段,執(zhí)行數(shù)據(jù)庫遷移命令
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。