在创建的app中models.py生成表结构
class 表名(models.Model): #表名一般首字母大写 中突出信息的大写
列名=models.Charfield(max_lenth=) #列的属性字符,长整型之类
最后在终端执行python manage.py makemigrations 生成
python manage.py migrate 同步到数据库
Posted 派神
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django数据表生成相关的知识,希望对你有一定的参考价值。
在创建的app中models.py生成表结构
class 表名(models.Model): #表名一般首字母大写 中突出信息的大写
列名=models.Charfield(max_lenth=) #列的属性字符,长整型之类
最后在终端执行python manage.py makemigrations 生成
python manage.py migrate 同步到数据库
以上是关于django数据表生成的主要内容,如果未能解决你的问题,请参考以下文章