Add taskName in integrations table
This commit is contained in:
@ -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")
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user