refs #638. Updated pxe template database field

feature/integration-ogboot
Manuel Aranda Rosales 2024-08-14 15:06:17 +02:00
parent 3f5004dddd
commit 159d38570a
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,31 @@
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20240814130427 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE pxe_template CHANGE template_content template_content TINYTEXT NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE pxe_template CHANGE template_content template_content VARCHAR(255) NOT NULL');
}
}

View File

@ -3,6 +3,7 @@
namespace App\Entity; namespace App\Entity;
use App\Repository\PxeTemplateRepository; use App\Repository\PxeTemplateRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM; use Doctrine\ORM\Mapping as ORM;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
@ -13,7 +14,7 @@ class PxeTemplate extends AbstractEntity
{ {
use NameableTrait; use NameableTrait;
#[ORM\Column(length: 255)] #[ORM\Column(length: 255, type: Types::TEXT)]
private ?string $templateContent = null; private ?string $templateContent = null;
public function getTemplateContent(): ?string public function getTemplateContent(): ?string