Merge pull request #268 from Hestia-Homes/feature/add_more_enums_for_source

added enum from hubspot source
This commit is contained in:
Daniel Roth 2026-05-12 17:21:12 +01:00 committed by GitHub
commit 46fa85c47c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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(),