fix: add title column to db

This was accidentally removed in a previous merge
This commit is contained in:
2026-03-03 12:41:02 +00:00
parent f4894759d7
commit 3772f83d11
2 changed files with 8 additions and 2 deletions

View File

@@ -49,6 +49,7 @@ class DatasetManager:
type,
parent_id,
author,
title,
content,
timestamp,
date,
@@ -70,7 +71,8 @@ class DatasetManager:
%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
)
"""
@@ -80,6 +82,7 @@ class DatasetManager:
row["type"],
row["parent_id"],
row["author"],
row.get("title"),
row["content"],
row["timestamp"],
row["date"],