<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20221012210453 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('CREATE TABLE change_log (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, entity VARCHAR(255) NOT NULL, entity_id INT NOT NULL, created_at DATETIME NOT NULL, field VARCHAR(255) NOT NULL, previous_value LONGTEXT NOT NULL, new_value LONGTEXT NOT NULL, INDEX IDX_5E1A0AD8A76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE change_log ADD CONSTRAINT FK_5E1A0AD8A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
}
public function down(Schema $schema): void
{
$this->addSql('DROP TABLE change_log');
}
}