feat: added backend for site comments

This commit is contained in:
alzalia1 2025-09-23 21:51:00 +02:00
parent 4b1a899f05
commit af3dfba510
12 changed files with 359 additions and 2 deletions

0
migrations/.diesel_lock Normal file
View file

0
migrations/.keep Normal file
View file

View file

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE comments

View file

@ -0,0 +1,6 @@
-- Your SQL goes here
CREATE TABLE comments (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
author TEXT NOT NULL,
content TEXT NOT NULL
);