fix(medusa): Allow de-selecting configurations in price lists (#1596)

This commit is contained in:
Philip Korsholm
2022-05-30 19:34:34 +02:00
committed by GitHub
parent d0c679fc7e
commit 3f23edea23
4 changed files with 104 additions and 68 deletions
+2 -2
View File
@@ -31,10 +31,10 @@ export class PriceList extends SoftDeletableEntity {
type: resolveDbType("timestamptz"),
nullable: true,
})
starts_at: Date
starts_at: Date | null
@Column({ type: resolveDbType("timestamptz"), nullable: true })
ends_at: Date
ends_at: Date | null
@JoinTable({
name: "price_list_customer_groups",