<?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 Version20221008053732 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('ALTER TABLE request DROP CONSTRAINT FK_3B978F9F7D50FB54');
$this->addSql('ALTER TABLE request ADD CONSTRAINT FK_3B978F9F7D50FB54 FOREIGN KEY (intercom_user_id) REFERENCES intercom_user (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
$this->addSql('ALTER TABLE request DROP CONSTRAINT fk_3b978f9f7d50fb54');
$this->addSql('ALTER TABLE request ADD CONSTRAINT fk_3b978f9f7d50fb54 FOREIGN KEY (intercom_user_id) REFERENCES intercom_user (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
}
}