<?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 Version20230128194347 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 media_object_news_item (id INT AUTO_INCREMENT NOT NULL, news_item_id INT DEFAULT NULL, file_path VARCHAR(255) DEFAULT NULL, creation_date DATETIME NOT NULL, INDEX IDX_C3D03427458B4EB8 (news_item_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE media_object_news_item ADD CONSTRAINT FK_C3D03427458B4EB8 FOREIGN KEY (news_item_id) REFERENCES news_item (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE media_object_news_item');
}
}