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",
|
||||
"mappedBy": "lists"
|
||||
},
|
||||
"title": {
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
"type": "richtext"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -545,7 +545,8 @@ export interface ApiMediaListMediaList extends Struct.CollectionTypeSchema {
|
|||
'manyToMany',
|
||||
'api::media-entry.media-entry'
|
||||
>;
|
||||
description: Schema.Attribute.String;
|
||||
title: Schema.Attribute.String & Schema.Attribute.Required;
|
||||
description: Schema.Attribute.RichText;
|
||||
createdAt: Schema.Attribute.DateTime;
|
||||
updatedAt: Schema.Attribute.DateTime;
|
||||
publishedAt: Schema.Attribute.DateTime;
|
||||
|
|
Loading…
Add table
Reference in a new issue