Deprecated: Constant E_STRICT is deprecated in /data/web/apps/test2-bridge.kwalitaria.bluebirdday.io/releases/1/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /data/web/apps/test2-bridge.kwalitaria.bluebirdday.io/releases/1/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

migrations/Version20220302124926.php line 1

  1. <?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 Version20220302124926 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 deal_store (deal_id CHAR(36) NOT NULL COMMENT \'(DC2Type:uuid)\', store_id CHAR(36) NOT NULL COMMENT \'(DC2Type:uuid)\', INDEX IDX_B9889B6BF60E2305 (deal_id), INDEX IDX_B9889B6BB092A811 (store_id), PRIMARY KEY(deal_id, store_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
            $this->addSql('ALTER TABLE deal_store ADD CONSTRAINT FK_B9889B6BF60E2305 FOREIGN KEY (deal_id) REFERENCES deal (id) ON DELETE CASCADE');
            $this->addSql('ALTER TABLE deal_store ADD CONSTRAINT FK_B9889B6BB092A811 FOREIGN KEY (store_id) REFERENCES store (id) ON DELETE CASCADE');
            $this->addSql('ALTER TABLE deal DROP FOREIGN KEY FK_E3FEC116B092A811');
            $this->addSql('DROP INDEX IDX_E3FEC116B092A811 ON deal');
            $this->addSql('ALTER TABLE deal DROP store_id, DROP content');
        }
    
        public function down(Schema $schema): void
        {
            // this down() migration is auto-generated, please modify it to your needs
            $this->addSql('DROP TABLE deal_store');
            $this->addSql('ALTER TABLE deal ADD store_id CHAR(36) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci` COMMENT \'(DC2Type:uuid)\', ADD content LONGTEXT CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`');
            $this->addSql('ALTER TABLE deal ADD CONSTRAINT FK_E3FEC116B092A811 FOREIGN KEY (store_id) REFERENCES store (id) ON UPDATE NO ACTION ON DELETE NO ACTION');
            $this->addSql('CREATE INDEX IDX_E3FEC116B092A811 ON deal (store_id)');
        }
    
        public function isTransactional(): bool
        {
            return false;
        }
    }