mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
add new coordination and design file types
This commit is contained in:
parent
418175f2c6
commit
452a2cd61d
1 changed files with 7 additions and 1 deletions
|
|
@ -2,6 +2,7 @@ import { bigint, bigserial, pgEnum, pgTable, text, timestamp } from "drizzle-orm
|
|||
import { user } from "./users";
|
||||
|
||||
export const fileType = pgEnum("file_type", [
|
||||
// Assessment
|
||||
"photo_pack",
|
||||
"site_note",
|
||||
"rd_sap_site_note",
|
||||
|
|
@ -48,7 +49,12 @@ export const fileType = pgEnum("file_type", [
|
|||
"installer_feedback",
|
||||
"contractor_other",
|
||||
// MagicPlan
|
||||
"magic_plan_json"
|
||||
"magic_plan_json",
|
||||
// Coordination
|
||||
"improvement_option_evaluation",
|
||||
"medium_term_improvement_plan",
|
||||
// Design
|
||||
"retrofit_design_doc"
|
||||
]);
|
||||
|
||||
export const fileSource = pgEnum("file_source", [
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue