<?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 Version20220903110344 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 visiting_card_event (id INT AUTO_INCREMENT NOT NULL, visiting_card_id INT DEFAULT NULL, event_id INT DEFAULT NULL, position DOUBLE PRECISION DEFAULT NULL, INDEX IDX_FEE48363EB37EBA0 (visiting_card_id), INDEX IDX_FEE4836371F7E88B (event_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE visiting_card_event ADD CONSTRAINT FK_FEE48363EB37EBA0 FOREIGN KEY (visiting_card_id) REFERENCES visiting_card (id)');
$this->addSql('ALTER TABLE visiting_card_event ADD CONSTRAINT FK_FEE4836371F7E88B FOREIGN KEY (event_id) REFERENCES event (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE visiting_card_event');
}
}