Change schema
All checks were successful
Build release Docker image / Build Docker Images (push) Successful in 5m24s

This commit is contained in:
2026-03-11 18:01:09 +01:00
parent 616b14edca
commit 75c90aa042
3 changed files with 237 additions and 1 deletions

View File

@@ -809,7 +809,9 @@ export interface ApiChoralChoral extends Struct.CollectionTypeSchema {
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
description: Schema.Attribute.Text;
email: Schema.Attribute.Email;
founded: Schema.Attribute.Integer;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
@@ -832,6 +834,7 @@ export interface ApiChoralChoral extends Struct.CollectionTypeSchema {
phoneNumber: Schema.Attribute.String;
postal: Schema.Attribute.Integer;
publishedAt: Schema.Attribute.DateTime;
social_networks: Schema.Attribute.JSON;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;