Increase DB field length for URLs to 2048 chars

This fixes issue #1122
This commit is contained in:
Jan Böhmer 2025-12-04 23:04:32 +01:00
parent a3d6f77fda
commit a5275f7be7
4 changed files with 166 additions and 9 deletions

View file

@ -50,7 +50,7 @@ class InfoProviderReference
/**
* @var string|null The url of this part inside the provider system or null if this info is not existing
*/
#[Column(type: Types::STRING, nullable: true)]
#[Column(type: Types::STRING, length: 2048, nullable: true)]
#[Groups(['provider_reference:read', 'full'])]
private ?string $provider_url = null;
@ -157,4 +157,4 @@ class InfoProviderReference
$ref->last_updated = new \DateTimeImmutable();
return $ref;
}
}
}