<?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 Version20250715102705 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 file_organization (id INT NOT NULL, organization_id INT NOT NULL, tag VARCHAR(255) NOT NULL, INDEX IDX_6270D8F632C8A3DE (organization_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE file_organization ADD CONSTRAINT FK_6270D8F632C8A3DE FOREIGN KEY (organization_id) REFERENCES channel_organizations (id) ON DELETE CASCADE');
$this->addSql('ALTER TABLE file_organization ADD CONSTRAINT FK_6270D8F6BF396750 FOREIGN KEY (id) REFERENCES file (id) ON DELETE CASCADE');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE file_organization DROP FOREIGN KEY FK_6270D8F632C8A3DE');
$this->addSql('ALTER TABLE file_organization DROP FOREIGN KEY FK_6270D8F6BF396750');
$this->addSql('DROP TABLE file_organization');
}
}