feat: implement wiki and submission management services with corresponding database schema and API endpoints
Build and Release / release (push) Successful in 2m3s

This commit is contained in:
2026-05-27 18:00:30 +07:00
parent 79cf5caa0b
commit e35f67e26b
16 changed files with 462 additions and 265 deletions
+1
View File
@@ -3,6 +3,7 @@ CREATE TABLE IF NOT EXISTS wiki_content (
wiki_id UUID NOT NULL REFERENCES wikis(id) ON DELETE CASCADE,
title TEXT NOT NULL,
content TEXT,
preview TEXT,
is_deleted BOOLEAN NOT NULL DEFAULT false,
created_at TIMESTAMPTZ DEFAULT now()
);