django.db.utils.IntegrityError:NOT NULL约束失败:blog_article.created_on

时间:2019-05-06 03:45:41

标签: django database

我正在django的博客应用程序中创建一个称为article的新模型。该模型用于注册,现在要在博客应用程序的model.py文件中定义的所有文章字段中添加一些数据。不幸的是,当单击保存按钮时,浏览器会显示IntegrityError

我尝试使用django应用查找其他类似问题,但无法提供解决方案。

这是blog/models.py文件:

from django.db import models

# Create your models here.
class article(models.Model):
    title = models.TextField()
    author = models.TextField()
    abstract = models.TextField(null=False)
    #publish = models.DateTimeField()

这是blog/admin.py文件:

from django.contrib import admin

from .models import article
# Register your models here.
admin.site.register(article)

这里是Traceback

Traceback (most recent call last):
  .
  .
  .
django.db.utils.IntegrityError: NOT NULL constraint failed: blog_article.created_on
[06/May/2019 03:32:46] "POST /admin/blog/article/add/ HTTP/1.1" 500 186244

0 个答案:

没有答案