ProgrammingError at /: relation "news_news" does not exist LINE 1: ...news". "image", "news_news". "image_thumbnail" FROM "news_news [duplicate]

https://valia-app.herokuapp.com/ В моем проекте возникла ProgrammingError. Что мне делать? base.html:

{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>{% block title %}Новости{% endblock %}</title>
   <link rel="stylesheet" href="{% static 'css/style.css' %}">
</head>
<body>
   {% include "navbar.html" %}
   {% block content %}
   {% endblock %}

   {% block js %}
   {% endblock %}
</body>
</html>

views.py:

def index(request, *args, **kwargs) :
   qs = News.objects.order_by("-id")
   return render(request, "index.html", {"news_list": qs})

Что я сделал не так?

Вернуться на верх