mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
added enum from hubspot source
This commit is contained in:
parent
4460795fca
commit
10b3d81bc2
4 changed files with 9407 additions and 1 deletions
1
src/app/db/migrations/0201_known_sebastian_shaw.sql
Normal file
1
src/app/db/migrations/0201_known_sebastian_shaw.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TYPE "public"."source" ADD VALUE 'hubspot_deal_id';
|
||||
9398
src/app/db/migrations/meta/0201_snapshot.json
Normal file
9398
src/app/db/migrations/meta/0201_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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(),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue