Add chapeau field

This commit is contained in:
2024-03-17 23:06:22 +01:00
parent 91ffcf7cc3
commit 8eb3b46936
2 changed files with 4 additions and 0 deletions
@@ -50,6 +50,9 @@
}, },
"date": { "date": {
"type": "string" "type": "string"
},
"chapeau": {
"type": "text"
} }
} }
} }
+1
View File
@@ -388,6 +388,7 @@ export interface ApiArticleArticle extends Schema.CollectionType {
} }
>; >;
date: Attribute.String; date: Attribute.String;
chapeau: Attribute.Text;
createdAt: Attribute.DateTime; createdAt: Attribute.DateTime;
updatedAt: Attribute.DateTime; updatedAt: Attribute.DateTime;
publishedAt: Attribute.DateTime; publishedAt: Attribute.DateTime;