<?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 Version20230124154452 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_credits_acknowledgment_request (id INT AUTO_INCREMENT NOT NULL, credits_acknowledgment_request_id INT DEFAULT NULL, file_path VARCHAR(255) DEFAULT NULL, creation_date DATETIME NOT NULL, file_key VARCHAR(255) DEFAULT NULL, INDEX IDX_57B32B0648C73BE7 (credits_acknowledgment_request_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE media_object_credits_acknowledgment_request ADD CONSTRAINT FK_57B32B0648C73BE7 FOREIGN KEY (credits_acknowledgment_request_id) REFERENCES credits_acknowledgment_request (id)');
$this->addSql('ALTER TABLE credits_acknowledgment_request DROP academic_guides_file_path, DROP university_origin_file_path, DROP credits_signed_file_path');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE media_object_credits_acknowledgment_request');
$this->addSql('ALTER TABLE credits_acknowledgment_request ADD academic_guides_file_path VARCHAR(255) DEFAULT NULL, ADD university_origin_file_path VARCHAR(255) DEFAULT NULL, ADD credits_signed_file_path VARCHAR(255) DEFAULT NULL');
}
}