feat: add needed DB entries for editing

This commit is contained in:
Radical 2025-07-12 19:43:36 +02:00
parent 42b2d08a00
commit b7b07141f9
5 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
ALTER TABLE messages DROP COLUMN is_edited;

View file

@ -0,0 +1,2 @@
-- Your SQL goes here
ALTER TABLE messages ADD COLUMN is_edited BOOLEAN NOT NULL DEFAULT FALSE;