溫馨提示×

溫馨提示×

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

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

django1.11.1 models 數(shù)據(jù)庫同步方法

發(fā)布時間:2020-10-18 14:08:36 來源:腳本之家 閱讀:161 作者:在奮斗的大道 欄目:開發(fā)技術(shù)

在django1.9之前,數(shù)據(jù)庫同步只需要一條命令:python manage.py syncdb

在djang1.9以后,數(shù)據(jù)庫同步執(zhí)行指令如下:

同步數(shù)據(jù)庫接口(注意需要切換至python project工作空間所在路徑)

python manage.py makemigrations 

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

python manage.py migrations

最后登入http://localhost:8080/admin 發(fā)現(xiàn),已經(jīng)創(chuàng)建數(shù)據(jù)庫表。

windows10 cmd窗口指令

D:\user_workspace>python manage.py makemigrations
Migrations for 'blog':
 blog\migrations\0001_initial.py
 - Create model BlogPost
D:\user_workspace>python manage.py migrate
Operations to perform:
 Apply all migrations: admin, auth, blog, contenttypes, sessions
Running migrations:
 Applying contenttypes.0001_initial... OK
 Applying auth.0001_initial... OK
 Applying admin.0001_initial... OK
 Applying admin.0002_logentry_remove_auto_add... OK
 Applying contenttypes.0002_remove_content_type_name... OK
 Applying auth.0002_alter_permission_name_max_length... OK
 Applying auth.0003_alter_user_email_max_length... OK
 Applying auth.0004_alter_user_username_opts... OK
 Applying auth.0005_alter_user_last_login_null... OK
 Applying auth.0006_require_contenttypes_0002... OK
 Applying auth.0007_alter_validators_add_error_messages... OK
 Applying auth.0008_alter_user_username_max_length... OK
 Applying blog.0001_initial... OK
 Applying sessions.0001_initial... OK

以上這篇django1.11.1 models 數(shù)據(jù)庫同步方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節(jié)

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

AI