博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Django现有模型增加字段
阅读量:6836 次
发布时间:2019-06-26

本文共 361 字,大约阅读时间需要 1 分钟。

对于Django已经存在的模型中需要增加一个字段,如何实现?

首先在model.py文件中找到对应的模型名称,加入需要增加的字段

然后python manage.py sqlall app名

找到新增加的字段的sql语句,记录下来

再执行python manage.py shell

执行如下命令

from django.db import connectioncursor=connection.cursor()cursor.execute('ALTER TABLE tablename ADD COLUMN columnname varchar(255) NOT NULL')

添加成功,可查看数据库验证

转载于:https://www.cnblogs.com/junyiningyuan/p/5644455.html

你可能感兴趣的文章
Codeforces 509F Progress Monitoring
查看>>
spring cloud: eureka搭建
查看>>
导弹拦截
查看>>
两个被广泛使用的Model Checking工具
查看>>
BZOJ 4999 This Problem Is Too Simple!
查看>>
POJ - 1995 Raising Modulo Numbers 【快速幂】
查看>>
dwr 文件上传
查看>>
第二章 在HTML中使用JavaScript
查看>>
C++的explicit关键字
查看>>
《SQL Server性能调优实战》知识点汇总
查看>>
JS 中文乱码
查看>>
原生JS实现音乐播放器!
查看>>
hive-安装MySQL(centos6.4)
查看>>
UVa 12100 Printer Queue (习题 5-7)
查看>>
windows下安装apache zookeeper
查看>>
第三周作业
查看>>
git pull --rebase
查看>>
linux下mysql的root密码忘记解决方
查看>>
protobuf 中的嵌套消息的使用 主要对set_allocated_和mutable_的使用
查看>>
0-1背包问题
查看>>