Added depth to RecommendationsMaterials

This commit is contained in:
Khalim Conn-Kowlessar 2023-08-11 14:13:01 +01:00
parent 7e14b9cffc
commit 539ce98ae1
4 changed files with 1255 additions and 0 deletions

View file

@ -0,0 +1 @@
ALTER TABLE "recommendation_materials" ADD COLUMN "depth" real;

File diff suppressed because it is too large Load diff

View file

@ -218,6 +218,13 @@
"when": 1691753400997,
"tag": "0030_special_hydra",
"breakpoints": true
},
{
"idx": 31,
"version": "5",
"when": 1691759536397,
"tag": "0031_complete_menace",
"breakpoints": true
}
]
}

View file

@ -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", {