update schemas
This commit is contained in:
parent
b23e5117a2
commit
d86e5f23ff
2 changed files with 7 additions and 2 deletions
|
@ -24,8 +24,12 @@
|
||||||
"target": "api::media-entry.media-entry",
|
"target": "api::media-entry.media-entry",
|
||||||
"mappedBy": "lists"
|
"mappedBy": "lists"
|
||||||
},
|
},
|
||||||
|
"title": {
|
||||||
|
"type": "string",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"type": "string"
|
"type": "richtext"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -545,7 +545,8 @@ export interface ApiMediaListMediaList extends Struct.CollectionTypeSchema {
|
||||||
'manyToMany',
|
'manyToMany',
|
||||||
'api::media-entry.media-entry'
|
'api::media-entry.media-entry'
|
||||||
>;
|
>;
|
||||||
description: Schema.Attribute.String;
|
title: Schema.Attribute.String & Schema.Attribute.Required;
|
||||||
|
description: Schema.Attribute.RichText;
|
||||||
createdAt: Schema.Attribute.DateTime;
|
createdAt: Schema.Attribute.DateTime;
|
||||||
updatedAt: Schema.Attribute.DateTime;
|
updatedAt: Schema.Attribute.DateTime;
|
||||||
publishedAt: Schema.Attribute.DateTime;
|
publishedAt: Schema.Attribute.DateTime;
|
||||||
|
|
Loading…
Add table
Reference in a new issue