forked from cadence/out-of-your-element
Implement the speedbump
This commit is contained in:
parent
5ef5dbb2e8
commit
e49dc18e67
9 changed files with 90 additions and 13 deletions
6
db/migrations/0009-add-speedbump-id.sql
Normal file
6
db/migrations/0009-add-speedbump-id.sql
Normal file
|
@ -0,0 +1,6 @@
|
|||
BEGIN TRANSACTION;
|
||||
|
||||
ALTER TABLE channel_room ADD COLUMN speedbump_id TEXT;
|
||||
ALTER TABLE channel_room ADD COLUMN speedbump_checked INTEGER;
|
||||
|
||||
COMMIT;
|
2
db/orm-defs.d.ts
vendored
2
db/orm-defs.d.ts
vendored
|
@ -7,6 +7,8 @@ export type Models = {
|
|||
thread_parent: string | null
|
||||
custom_avatar: string | null
|
||||
last_bridged_pin_timestamp: number | null
|
||||
speedbump_id: string | null
|
||||
speedbump_checked: number | null
|
||||
}
|
||||
|
||||
event_message: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue