order: remove field 'price'

This commit is contained in:
vchikalkin 2025-07-22 13:33:52 +03:00
parent 6dc36ebe89
commit 7f57b03c88
2 changed files with 0 additions and 4 deletions

View File

@ -24,9 +24,6 @@
"cancelled" "cancelled"
] ]
}, },
"price": {
"type": "integer"
},
"client": { "client": {
"type": "relation", "type": "relation",
"relation": "manyToOne", "relation": "manyToOne",

View File

@ -476,7 +476,6 @@ export interface ApiOrderOrder extends Struct.CollectionTypeSchema {
localizations: Schema.Attribute.Relation<'oneToMany', 'api::order.order'> & localizations: Schema.Attribute.Relation<'oneToMany', 'api::order.order'> &
Schema.Attribute.Private; Schema.Attribute.Private;
order_number: Schema.Attribute.Integer; order_number: Schema.Attribute.Integer;
price: Schema.Attribute.Integer;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
services: Schema.Attribute.Relation<'manyToMany', 'api::service.service'>; services: Schema.Attribute.Relation<'manyToMany', 'api::service.service'>;
slot: Schema.Attribute.Relation<'manyToOne', 'api::slot.slot'>; slot: Schema.Attribute.Relation<'manyToOne', 'api::slot.slot'>;