migrations/Version20221012210453.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20221012210453 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $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');
  11.         $this->addSql('ALTER TABLE change_log ADD CONSTRAINT FK_5E1A0AD8A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  12.     }
  13.     public function down(Schema $schema): void
  14.     {
  15.         $this->addSql('DROP TABLE change_log');
  16.     }
  17. }