1
0
Fork 0

Backfill missed pins and pins from the past

This commit is contained in:
Cadence Ember 2024-01-18 00:30:55 +13:00
parent ed7404ea19
commit 8987107685
9 changed files with 147 additions and 13 deletions

View file

@ -0,0 +1,5 @@
BEGIN TRANSACTION;
ALTER TABLE channel_room ADD COLUMN last_bridged_pin_timestamp INTEGER;
COMMIT;

1
db/orm-defs.d.ts vendored
View file

@ -6,6 +6,7 @@ export type Models = {
nick: string | null
thread_parent: string | null
custom_avatar: string | null
last_bridged_pin_timestamp: number | null
}
event_message: {