<?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 Version20211221105015 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 text_template ADD id INT AUTO_INCREMENT NOT NULL, DROP PRIMARY KEY, ADD PRIMARY KEY (id)');
$this->addSql('CREATE INDEX text_template_name_idx ON text_template (name)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE text_template MODIFY id INT NOT NULL');
$this->addSql('DROP INDEX text_template_name_idx ON text_template');
$this->addSql('ALTER TABLE text_template DROP PRIMARY KEY');
$this->addSql('ALTER TABLE text_template DROP id');
$this->addSql('ALTER TABLE text_template ADD PRIMARY KEY (name)');
}
}