想到怎么重置密码了 :P

This commit is contained in:
Yuri
2017-04-30 00:30:15 +08:00
parent a2f3d3326e
commit 22ef0ed83f
+4 -5
View File
@@ -40,17 +40,16 @@ DATABASES = {
## 运行测试服务器 ## 运行测试服务器
> python manage.py runserver > python manage.py runserver
## 创建管理员账户(因为我没找到SQL库里admin的密码 ## 修改管理员账户密码
``` ```
C:\Django-ERP>python manage.py createsuperuser C:\Django-ERP>python manage.py changepassword admin
You have 3 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth. You have 3 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth.
Run 'python manage.py migrate' to apply them. Run 'python manage.py migrate' to apply them.
Username (leave blank to use 'baoz'): system Changing password for user 'admin'
Email address: yurihuang@me.com
Password: Password:
Password (again): Password (again):
Superuser created successfully. Password changed successfully for user 'admin'
C:\Django-ERP> C:\Django-ERP>
``` ```