add new property to car
This commit is contained in:
parent
ed6e5089ec
commit
6fb0ed5a89
@ -4,7 +4,8 @@
|
|||||||
"info": {
|
"info": {
|
||||||
"singularName": "car",
|
"singularName": "car",
|
||||||
"pluralName": "cars",
|
"pluralName": "cars",
|
||||||
"displayName": "car"
|
"displayName": "car",
|
||||||
|
"description": ""
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
"draftAndPublish": true
|
"draftAndPublish": true
|
||||||
@ -13,6 +14,9 @@
|
|||||||
"attributes": {
|
"attributes": {
|
||||||
"name": {
|
"name": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"type": "text"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -472,6 +472,7 @@ export interface ApiAuthorAuthor extends Struct.CollectionTypeSchema {
|
|||||||
export interface ApiCarCar extends Struct.CollectionTypeSchema {
|
export interface ApiCarCar extends Struct.CollectionTypeSchema {
|
||||||
collectionName: 'cars';
|
collectionName: 'cars';
|
||||||
info: {
|
info: {
|
||||||
|
description: '';
|
||||||
displayName: 'car';
|
displayName: 'car';
|
||||||
pluralName: 'cars';
|
pluralName: 'cars';
|
||||||
singularName: 'car';
|
singularName: 'car';
|
||||||
@ -483,6 +484,7 @@ export interface ApiCarCar extends Struct.CollectionTypeSchema {
|
|||||||
createdAt: Schema.Attribute.DateTime;
|
createdAt: Schema.Attribute.DateTime;
|
||||||
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||||
Schema.Attribute.Private;
|
Schema.Attribute.Private;
|
||||||
|
description: Schema.Attribute.Text;
|
||||||
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
||||||
localizations: Schema.Attribute.Relation<'oneToMany', 'api::car.car'> &
|
localizations: Schema.Attribute.Relation<'oneToMany', 'api::car.car'> &
|
||||||
Schema.Attribute.Private;
|
Schema.Attribute.Private;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user