added enum from hubspot source

This commit is contained in:
Jun-te Kim 2026-05-12 16:18:42 +00:00
parent 4460795fca
commit 10b3d81bc2
4 changed files with 9407 additions and 1 deletions

View file

@ -0,0 +1 @@
ALTER TYPE "public"."source" ADD VALUE 'hubspot_deal_id';

File diff suppressed because it is too large Load diff

View file

@ -1408,6 +1408,13 @@
"when": 1778600522440,
"tag": "0200_new_beast",
"breakpoints": true
},
{
"idx": 201,
"version": "7",
"when": 1778602691863,
"tag": "0201_known_sebastian_shaw",
"breakpoints": true
}
]
}

View file

@ -1,6 +1,6 @@
import { pgTable, uuid, text, timestamp, pgEnum } from "drizzle-orm/pg-core";
export const sourceEnum = pgEnum("source", ["portfolio_id"]);
export const sourceEnum = pgEnum("source", ["portfolio_id", "hubspot_deal_id"]);
export const tasks = pgTable("tasks", {
id: uuid("id").defaultRandom().primaryKey(),