Add message endpoint #13

Merged
phoenix merged 5 commits from add_message into alot_of_changes 2026-06-17 14:25:53 -04:00
Showing only changes of commit e272cff3c5 - Show all commits
+6
View File
@@ -10,3 +10,9 @@ CREATE TABLE IF NOT EXISTS "contacts" (
lastname TEXT NULL,
nickname TEXT NULL
);
CREATE TABLE IF NOT EXISTS "messages" (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
content TEXT NOT NULL,
user_id UUID NOT NULL
);