<?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 Version20210907101042 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 tree_photo (id INT AUTO_INCREMENT NOT NULL, tree_id_id INT NOT NULL, file_id_id INT NOT NULL, INDEX IDX_ACB5A27DC746B832 (tree_id_id), UNIQUE INDEX UNIQ_ACB5A27DD5C72E60 (file_id_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE tree_photo ADD CONSTRAINT FK_ACB5A27DC746B832 FOREIGN KEY (tree_id_id) REFERENCES tree (id)');
$this->addSql('ALTER TABLE tree_photo ADD CONSTRAINT FK_ACB5A27DD5C72E60 FOREIGN KEY (file_id_id) REFERENCES file (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE tree_photo');
}
}