Added migrations for sqlite and new additional_names field

This commit is contained in:
Jan Böhmer 2023-07-16 20:47:25 +02:00
parent b3b205cd6e
commit edc54aaf91
3 changed files with 357 additions and 33 deletions

View file

@ -124,6 +124,12 @@ abstract class AbstractStructuralDBElement extends AttachmentContainingDBElement
*/
private array $full_path_strings = [];
/**
* Alternative names (semicolon-separated) for this element, which can be used for searching (especially for info provider system)
*/
#[ORM\Column(type: Types::TEXT, nullable: true, options: ['default' => null])]
private ?string $alternative_names = "";
public function __construct()
{
parent::__construct();