Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/mautic.corals.io/app/migrations/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/mautic.corals.io/app/migrations/Version20210112162046.php
<?php

declare(strict_types=1);

namespace Mautic\Migrations;

use Doctrine\DBAL\Schema\Schema;
use Mautic\CoreBundle\Doctrine\AbstractMauticMigration;

final class Version20210112162046 extends AbstractMauticMigration
{
    private const TABLE_NAME = 'sync_object_mapping';
    private const INDEX_NAME = 'integration_integration_object_name_last_sync_date';

    public function preUp(Schema $schema): void
    {
        $this->skipIf(
            $this->indexExists($schema),
            sprintf('Index `%s` already exists. Skipping the migration', static::INDEX_NAME)
        );
    }

    public function up(Schema $schema): void
    {
        $this->addSql(sprintf(
            'ALTER TABLE `%s` ADD INDEX `%s` (`integration`, `internal_object_name`, `last_sync_date`);',
            $this->getTableName(),
            static::INDEX_NAME
        ));
    }

    public function preDown(Schema $schema): void
    {
        $this->skipIf(
            !$this->indexExists($schema),
            sprintf('Index `%s` doesn\'t exist. Skipping reverting the migration', static::INDEX_NAME)
        );
    }

    public function down(Schema $schema): void
    {
        $this->addSql(sprintf(
            'ALTER TABLE `%s` DROP INDEX `%s`;',
            $this->getTableName(),
            static::INDEX_NAME
        ));
    }

    private function getTableName(): string
    {
        return $this->prefix.static::TABLE_NAME;
    }

    private function indexExists(Schema $schema): bool
    {
        return $schema->getTable($this->getTableName())->hasIndex(static::INDEX_NAME);
    }
}

Spamworldpro Mini