mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
Added depth to RecommendationsMaterials
This commit is contained in:
parent
7e14b9cffc
commit
539ce98ae1
4 changed files with 1255 additions and 0 deletions
1
src/app/db/migrations/0031_complete_menace.sql
Normal file
1
src/app/db/migrations/0031_complete_menace.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "recommendation_materials" ADD COLUMN "depth" real;
|
||||
1246
src/app/db/migrations/meta/0031_snapshot.json
Normal file
1246
src/app/db/migrations/meta/0031_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -218,6 +218,13 @@
|
|||
"when": 1691753400997,
|
||||
"tag": "0030_special_hydra",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 31,
|
||||
"version": "5",
|
||||
"when": 1691759536397,
|
||||
"tag": "0031_complete_menace",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -62,6 +62,7 @@ export const recommendationMaterials = pgTable("recommendation_materials", {
|
|||
.notNull()
|
||||
.references(() => material.id),
|
||||
createdAt: timestamp("created_at").notNull().defaultNow(),
|
||||
depth: real("depth"),
|
||||
});
|
||||
|
||||
export const plan = pgTable("plan", {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue