add list for previous titles

This commit is contained in:
2026-07-28 16:50:16 +02:00
parent b5a058420e
commit 3e31f4d1f9
9 changed files with 261 additions and 125 deletions
@@ -0,0 +1 @@
DROP TABLE post_versions;
@@ -0,0 +1,6 @@
CREATE TABLE post_versions (
announcement_id TEXT NOT NULL,
publish_date TIMESTAMP NOT NULL,
title TEXT NOT NULL,
PRIMARY KEY (announcement_id, publish_date, title)
);