• django--开发博客


    配置文件修改

    INSTALLED_APPS = [
        'django.contrib.admin',
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.sessions',
        'django.contrib.messages',
        'django.contrib.staticfiles',
        'user',
    ]#加上user子项目

    执行命令:

      python manage.py makemigrations  #生成表结构

      

      python manage.py migrate      #同步到数据库

      ps:只要更改表结构就要重复上面两个操作

    可以连接数据库查看表结构

      一种是:navicat工具添加  sqllite3   数据库

      二种是:pycharm自带的连接数据库l连接   sqllite3   

    设置admin管理员账号密码: 

            python manage.py createsuperuser  #创建后台管理用户

      弹出对话框

    C:UserschenDesktopcwl_zuoyedj_test>python manage.py createsuperuser
    用户名 (leave blank to use 'chen'): admin
    电子邮件地址: newcwl@126.com
    Password:
    Password (again):
    密码长度太短。密码必须包含至少 8 个字符。
    这个密码太常见了。
    密码只包含数字。
    Bypass password validation and create user anyway? [y/N]: y
    Superuser created successfully.
  • 相关阅读:
    前端到后台ThinkPHP开发整站(4)
    前端到后台ThinkPHP开发整站(2)
    字典树模版
    KMP模版
    EXKMP模版
    Manacher模版
    AC自动机练习题1:地图匹配
    AC自动机模版
    spring.net之aop加单例模式编写无try catch程序
    父类与子类之间赋值转换
  • 原文地址:https://www.cnblogs.com/cwl-bj/p/12940403.html
Copyright © 2020-2023  润新知