<?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 Version20231009224714 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('CREATE TABLE imported_rows (id SERIAL NOT NULL, external_hash VARCHAR(32) NOT NULL, entity_class VARCHAR(255) NOT NULL, entity_id INT NOT NULL, PRIMARY KEY(id))');
$this->addSql('ALTER TABLE issue_topic ALTER name SET DEFAULT \'\'');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
$this->addSql('DROP TABLE imported_rows');
$this->addSql('ALTER TABLE issue_topic ALTER name DROP DEFAULT');
}
}