mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add taskName in integrations table
This commit is contained in:
parent
eb2ee5ab55
commit
5a8184da3a
2 changed files with 4 additions and 0 deletions
|
|
@ -39,4 +39,7 @@ export class Integration {
|
|||
|
||||
@Column('timestamp', { nullable: true })
|
||||
syncedAt?: Date | null
|
||||
|
||||
@Column('text', { nullable: true })
|
||||
taskName?: string | null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ CREATE TABLE omnivore.integrations (
|
|||
created_at timestamptz NOT NULL DEFAULT current_timestamp,
|
||||
updated_at timestamptz NOT NULL DEFAULT current_timestamp,
|
||||
synced_at timestamptz,
|
||||
task_name text,
|
||||
UNIQUE (user_id, "type")
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue