django1.11.1 models 數據庫同步方法
更新時間:2018年05月30日 10:29:39 作者:在奮斗的大道
今天小編就為大家分享一篇django1.11.1 models 數據庫同步方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
在django1.9之前,數據庫同步只需要一條命令:python manage.py syncdb
在djang1.9以后,數據庫同步執(zhí)行指令如下:
同步數據庫接口(注意需要切換至python project工作空間所在路徑)
python manage.py makemigrations
同步數據
python manage.py migrations
最后登入http://localhost:8080/admin 發(fā)現,已經創(chuàng)建數據庫表。
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 數據庫同步方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
您可能感興趣的文章:
相關文章
Mac上Python使用ffmpeg完美解決方案(避坑必看!)
ffmpeg是一個強大的開源命令行多媒體處理工具,下面這篇文章主要給大家介紹了關于Mac上Python使用ffmpeg完美解決方案的相關資料,文中通過實例代碼介紹的非常詳細,需要的朋友可以參考下2023-02-02
Sentry的安裝、配置、使用教程(Sentry日志手機系統(tǒng))
Sentry?是一個實時事件日志記錄和聚合平臺,由于ExceptionLess官方提供的客戶端只有.Net/.NetCore平臺和js的,本文繼續(xù)介紹另一個日志收集系統(tǒng)Sentry,感興趣的朋友一起看看吧2022-07-07
Pytorch使用MNIST數據集實現基礎GAN和DCGAN詳解
今天小編就為大家分享一篇Pytorch使用MNIST數據集實現基礎GAN和DCGAN詳解,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-01-01

