forked from cadence/out-of-your-element
Backfill missed pins and pins from the past
This commit is contained in:
parent
ed7404ea19
commit
8987107685
9 changed files with 147 additions and 13 deletions
5
db/migrations/0008-add-last-bridged-pin-timestamp.sql
Normal file
5
db/migrations/0008-add-last-bridged-pin-timestamp.sql
Normal 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
1
db/orm-defs.d.ts
vendored
|
@ -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: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue