fix: include title in db schema

This commit is contained in:
2026-03-02 18:42:03 +00:00
parent 2ae9479943
commit 1f6d92b1a8
2 changed files with 8 additions and 2 deletions

View File

@@ -67,6 +67,7 @@ class PostgresConnector:
type,
parent_id,
author,
title,
content,
timestamp,
date,
@@ -88,7 +89,8 @@ class PostgresConnector:
%s, %s, %s, %s, %s,
%s, %s, %s, %s, %s,
%s, %s, %s, %s, %s,
%s, %s, %s, %s, %s
%s, %s, %s, %s, %s,
%s
)
"""
@@ -100,6 +102,7 @@ class PostgresConnector:
row["type"],
row["parent_id"],
row["author"],
row.get("title"),
row["content"],
row["timestamp"],
row["date"],