chore: cleanup inspection (#6358)

This commit is contained in:
Adrien de Peretti
2024-02-09 14:40:09 +01:00
committed by GitHub
parent 94062d28be
commit b91a1ca5b8
19 changed files with 66 additions and 72 deletions
@@ -4,11 +4,10 @@ import {
Collection,
Entity,
Filter,
Index,
ManyToOne,
OnInit,
OneToMany,
OneToOne,
OnInit,
OptionalProps,
PrimaryKey,
PrimaryKeyType,
@@ -84,7 +83,11 @@ export default class PriceSetMoneyAmount {
})
updated_at: Date
@Property({ columnType: "timestamptz", nullable: true , index: "IDX_price_set_money_amount_deleted_at"})
@Property({
columnType: "timestamptz",
nullable: true,
index: "IDX_price_set_money_amount_deleted_at",
})
deleted_at: Date | null
@BeforeCreate()