mirror of
https://github.com/l5yth/potato-mesh.git
synced 2026-03-28 17:42:48 +01:00
* Handle encrypted messages * Remove redundant message node columns * Preserve original numeric message senders * Normalize message sender IDs in API responses * Exclude encrypted messages from API responses * run rufo
5 lines
125 B
PL/PgSQL
5 lines
125 B
PL/PgSQL
-- Add support for encrypted messages to the existing schema.
|
|
BEGIN;
|
|
ALTER TABLE messages ADD COLUMN encrypted TEXT;
|
|
COMMIT;
|