Adding messages table

This commit is contained in:
2026-06-17 14:15:28 -04:00
parent 98e93b175e
commit e272cff3c5
+6
View File
@@ -10,3 +10,9 @@ CREATE TABLE IF NOT EXISTS "contacts" (
lastname TEXT NULL, lastname TEXT NULL,
nickname 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
);