backend/migrations/2025-07-04-183201_add_replies_to_messages/up.sql
Radical f3760af1bb
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/push/publish-docs Pipeline was successful
feat: add reply_to field to messages
2025-07-04 21:42:23 +02:00

2 lines
108 B
SQL

-- Your SQL goes here
ALTER TABLE messages ADD COLUMN reply_to UUID REFERENCES messages(uuid) DEFAULT NULL;