<?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 Version20221005182745 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function isTransactional(): bool
{
return false;
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE TABLE user_stablishment (user_id INT NOT NULL, stablishment_id INT NOT NULL, cdate DATETIME NOT NULL, INDEX IDX_3C5E244CA76ED395 (user_id), INDEX IDX_3C5E244C70264072 (stablishment_id), PRIMARY KEY(user_id, stablishment_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE user_stablishment ADD CONSTRAINT FK_3C5E244CA76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE user_stablishment ADD CONSTRAINT FK_3C5E244C70264072 FOREIGN KEY (stablishment_id) REFERENCES stablishment (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE user_stablishment');
}
}