<?php
declare(strict_types=1);
namespace TicketsBundleMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20241030143337 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('CREATE FULLTEXT INDEX content ON tickets_bundle__ticket_message (content)');
}
public function down(Schema $schema): void
{
$this->addSql('DROP INDEX content ON tickets_bundle__ticket_message');
}
}