mirror of
https://github.com/snikket-im/snikket-ios.git
synced 2025-10-26 11:18:09 +00:00
10 lines
224 B
PL/PgSQL
10 lines
224 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE chat_history ADD COLUMN master_id INT;
|
|
ALTER TABLE chat_history ADD COLUMN correction_stanza_id TEXT;
|
|
ALTER TABLE chat_history ADD COLUMN correction_timestamp INTEGER;
|
|
|
|
COMMIT;
|
|
|
|
PRAGMA user_version = 12;
|