<?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 Version20230129225843 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_holidays_item (id INT AUTO_INCREMENT NOT NULL, holidays_item_id INT DEFAULT NULL, file_path VARCHAR(255) DEFAULT NULL, creation_date DATETIME NOT NULL, file_key VARCHAR(255) DEFAULT NULL, INDEX IDX_6578E2C8E56832D6 (holidays_item_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE media_object_holidays_item ADD CONSTRAINT FK_6578E2C8E56832D6 FOREIGN KEY (holidays_item_id) REFERENCES holidays_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_holidays_item');
}
}