mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
Merge pull request #311 from Hestia-Homes/feature/additional_hubspot_proeprties
Feature/additional hubspot proeprties
This commit is contained in:
commit
c6091af34c
6 changed files with 10948 additions and 4 deletions
|
|
@ -14,8 +14,7 @@
|
|||
// the mounted host ~/.config/gh.
|
||||
"postCreateCommand": "gh repo clone Hestia-Homes/agentic-toolkit /tmp/agentic-toolkit -- --branch 0.0.5 --depth 1 && bash /tmp/agentic-toolkit/setup.sh && npm install",
|
||||
|
||||
"forwardPorts": [3000],
|
||||
"appPort": ["3000:3000"],
|
||||
"forwardPorts": ["frontend:3000", "pgadmin:80"],
|
||||
|
||||
"mounts": [
|
||||
// Optional, just makes getting from Downloads (local env) easier
|
||||
|
|
|
|||
|
|
@ -9,7 +9,10 @@ services:
|
|||
USER_GID: ${GID:-1000}
|
||||
command: sleep infinity
|
||||
ports:
|
||||
- "3000:3000"
|
||||
# Host port left unspecified so Docker assigns a free one — lets multiple
|
||||
# worktrees of this repo run at once without colliding. VS Code's
|
||||
# forwardPorts (below) forwards container :3000 to your machine.
|
||||
- "3000"
|
||||
volumes:
|
||||
- ..:/workspaces/assessment-model
|
||||
- ~/.gitconfig:/home/vscode/.gitconfig
|
||||
|
|
@ -29,7 +32,9 @@ services:
|
|||
image: dpage/pgadmin4
|
||||
hostname: pgadmin
|
||||
ports:
|
||||
- 5556:80
|
||||
# Dynamic host port (see frontend above). VS Code auto-detects and
|
||||
# forwards the listening container port when the container comes up.
|
||||
- "80"
|
||||
env_file:
|
||||
- ../.db-env
|
||||
restart: unless-stopped
|
||||
|
|
|
|||
4
src/app/db/migrations/0229_lively_kree.sql
Normal file
4
src/app/db/migrations/0229_lively_kree.sql
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
ALTER TABLE "hubspot_deal_data" ADD COLUMN "date_booking_made" timestamp (6) with time zone;--> statement-breakpoint
|
||||
ALTER TABLE "hubspot_deal_data" ADD COLUMN "last_contact_date" timestamp (6) with time zone;--> statement-breakpoint
|
||||
ALTER TABLE "hubspot_deal_data" ADD COLUMN "last_outbound_call" timestamp (6) with time zone;--> statement-breakpoint
|
||||
ALTER TABLE "hubspot_deal_data" ADD COLUMN "last_outbound_email" timestamp (6) with time zone;
|
||||
10924
src/app/db/migrations/meta/0229_snapshot.json
Normal file
10924
src/app/db/migrations/meta/0229_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1597,6 +1597,13 @@
|
|||
"when": 1780910657380,
|
||||
"tag": "0228_deep_betty_ross",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 229,
|
||||
"version": "7",
|
||||
"when": 1780929304935,
|
||||
"tag": "0229_lively_kree",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -74,6 +74,11 @@ export const hubspotDealData = pgTable("hubspot_deal_data", {
|
|||
domnaSurveyType: text("domna_survey_type"),
|
||||
domnaSurveyDate: timestamp("domna_survey_date", { precision: 6, withTimezone: true }),
|
||||
|
||||
dateBookingMade: timestamp("date_booking_made", { precision: 6, withTimezone: true }),
|
||||
lastContactDate: timestamp("last_contact_date", { precision: 6, withTimezone: true }),
|
||||
lastOutboundCall: timestamp("last_outbound_call", { precision: 6, withTimezone: true }),
|
||||
lastOutboundEmail: timestamp("last_outbound_email", { precision: 6, withTimezone: true }),
|
||||
|
||||
createdAt: timestamp("created_at", { precision: 6, withTimezone: true })
|
||||
.defaultNow()
|
||||
.notNull(),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue