Files
nuchat/backend/migrations/20250728150137_create_messages_table.sql
Fergus Molloy c96b2adada
Some checks failed
Backend Actions / check (push) Failing after 3m26s
Frontend Actions / check (push) Failing after 3m17s
Backend Actions / test (push) Failing after 3m20s
Frontend Actions / test (push) Successful in 51s
Frontend Actions / build (push) Successful in 56s
Backend Actions / build (push) Failing after 10m57s
fix tests and properly intgrate sqlx
2025-08-01 15:21:39 +01:00

8 lines
159 B
SQL

-- Add migration script here
CREATE TABLE messages (
id uuid NOT NULL,
PRIMARY KEY(id),
contents TEXT NOT NULL,
created_at timestamptz NOT NULL
)