溫馨提示×

溫馨提示×

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

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

django使用models創(chuàng)建表

發(fā)布時間:2020-08-17 13:42:17 來源:網(wǎng)絡 閱讀:10623 作者:zenge_blog 欄目:數(shù)據(jù)庫

Django 模型是與數(shù)據(jù)庫相關的,與數(shù)據(jù)庫相關的代碼一般寫在 models.py 中,Django 支持 sqlite3, MySQL, PostgreSQL等數(shù)據(jù)庫,只需要在settings.py中配置即可,不用更改models.py中的代碼,豐富的API極大的方便了使用。


創(chuàng)建表

我們打開 mysite/models.py 文件,修改其中的代碼如下:

#coding:utf8
from django.db import models
class Userlist(models.Model):
    username = models.CharField(max_length=50)
    password = models.CharField(max_length=50)

我們新建了一個Userlist類,繼承自models.Model, 一個用戶清單里面有用戶名和密碼。這里用到了一種Field,更多Field類型可以參考教程最后的鏈接。


同步數(shù)據(jù)庫

python manage.py makemigrations
Migrations for 'learn':
  0006_userlist.py:
    - Create model UserList
python manage.py migrate
Operations to perform:
  Synchronize unmigrated apps: staticfiles, messages
  Apply all migrations: admin, contenttypes, sessions, auth, learn
Synchronizing apps without migrations:
  Creating tables...
    Running deferred SQL...
  Installing custom SQL...
Running migrations:
  Rendering model states... DONE
  Applying learn.0006_userlist... OK


注冊表

打開mystie/admin.py文件,修改代碼:

from django.contrib import admin
from learn.models import *
# Register your models here.
class UserlistAdmin(admin.ModelAdmin):
    list_display = ['username','password']
admin.site.register(Userlist,UserlistAdmin)


訪問后臺管理

http://127.0.0.1:8000/admin


django使用models創(chuàng)建表


如何刪除表?

1、刪除mysite/models.py中的對應類

django使用models創(chuàng)建表2、刪除mysite/admin.py中注冊的類

django使用models創(chuàng)建表

3、數(shù)據(jù)庫同步

python manage.py makemigrations
python manage.py migrate


4、訪問后臺管理

django使用models創(chuàng)建表

可以看到已經(jīng)沒有了Userlist表了



向AI問一下細節(jié)

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

AI