溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

pycharm 中如何使用ORM創(chuàng)建數(shù)據(jù)庫

發(fā)布時間:2021-07-28 17:14:27 來源:億速云 閱讀:186 作者:Leah 欄目:開發(fā)技術(shù)

pycharm 中如何使用ORM創(chuàng)建數(shù)據(jù)庫,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

數(shù)據(jù)表的創(chuàng)建

表的創(chuàng)建

在models.py文件里面創(chuàng)建數(shù)據(jù)表類,

from django.db import models
class userinfo(models.Model):
    uid = models.AutoField(primary_key=True)
    username = models.CharField(max_length=32)
    password = models.CharField(max_length=64)

在終端執(zhí)行數(shù)據(jù)庫創(chuàng)建命令

python3 manage.py makemigrations
python3 manage.py migrate

pycharm 中如何使用ORM創(chuàng)建數(shù)據(jù)庫

這里需要注意的是,要在setting里面配置上你的程序,如下圖
pycharm 中如何使用ORM創(chuàng)建數(shù)據(jù)庫

執(zhí)行完成后,可以登錄到數(shù)據(jù)庫中,查看是否有你創(chuàng)建的數(shù)據(jù)庫表
pycharm 中如何使用ORM創(chuàng)建數(shù)據(jù)庫

表的更新

把username 字段修改為user字段,如何操作?

from django.db import models
class userinfo(models.Model):
    uid = models.AutoField(primary_key=True)
    user = models.CharField(max_length=32)
    password = models.CharField(max_length=64)

執(zhí)行數(shù)據(jù)庫生成命令,可以看到這里會有提升,詢問是否要把那個表下面的那個字段要做調(diào)整,這里我們選擇Y,回車操作 繼續(xù)執(zhí)行下面的命令:

C:\Users\Tony\PycharmProjects\LearnDjango>python3 manage.py makemigrations
Did you rename userinfo.username to userinfo.user (a CharField)? [y/N]
C:\Users\Tony\PycharmProjects\LearnDjango>python3 manage.py migrate
Operations to perform:
  Apply all migrations: admin, app01, sessions, auth, contenttypes
Running migrations:
  Rendering model states... DONE
  Applying app01.0002_auto_20180115_1735... OK

可以看到結(jié)果是修改了的

pycharm 中如何使用ORM創(chuàng)建數(shù)據(jù)庫

添加字段的默認(rèn)值

如果我們添加一個字段默認(rèn)沒有給值,則在執(zhí)行數(shù)據(jù)庫migrations的時候是會有提升,提示結(jié)果如下:

C:\Users\Tony\PycharmProjects\LearnDjango>python3 manage.py makemigrations
You are trying to add a non-nullable field 'age' to userinfo without a default; we can't do that (the database needs something to populate existing ro
ws).
Please select a fix:
 1) Provide a one-off default now (will be set on all existing rows)
 2) Quit, and let me add a default in models.py
Select an option:

解決方法:
我們選擇2取消這個提示,這個時候,我們有兩種方法解決:
第一種就是設(shè)置一個默認(rèn)值default

from django.db import models
class userinfo(models.Model):
    uid = models.AutoField(primary_key=True)
    user = models.CharField(max_length=32)
    password = models.CharField(max_length=64)
    age = models.IntegerField(default=1)

第二種解決方法是,指定null可以為空
age = models.IntegerField(null=True)

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI