Add title to popular posts route to improve site efficiency

This commit is contained in:
Alex Selimov 2026-08-03 23:16:12 -04:00
parent 3ee97b5d43
commit 1228112213
5 changed files with 59 additions and 22 deletions

View file

@ -0,0 +1,7 @@
CREATE EXTENSION IF NOT EXISTS pgcrypto;
CREATE TABLE IF NOT EXISTS titles (
slug text not null,
title text not null,
primary key (slug)
);