DigiComp.Sequence/Migrations/Mysql/Version20160624203903.php

38 lines
1.1 KiB
PHP
Raw Normal View History

2016-06-24 20:40:25 +02:00
<?php
2022-05-02 09:56:14 +02:00
declare(strict_types=1);
2017-03-13 16:59:04 +01:00
namespace Neos\Flow\Persistence\Doctrine\Migrations;
2016-06-24 20:40:25 +02:00
2021-09-08 16:42:05 +02:00
use Doctrine\DBAL\Exception as DoctrineDBALException;
use Doctrine\DBAL\Migrations\AbortMigrationException;
2016-06-24 20:40:25 +02:00
use Doctrine\DBAL\Schema\Schema;
2021-09-08 16:42:05 +02:00
use Doctrine\Migrations\AbstractMigration;
2016-06-24 20:40:25 +02:00
class Version20160624203903 extends AbstractMigration
{
/**
* @param Schema $schema
2021-09-08 16:42:05 +02:00
* @throws AbortMigrationException
* @throws DoctrineDBALException
2016-06-24 20:40:25 +02:00
*/
2021-09-08 16:42:05 +02:00
public function up(Schema $schema): void
2016-06-24 20:40:25 +02:00
{
2021-09-08 16:42:05 +02:00
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on "mysql".');
2016-06-24 20:40:25 +02:00
$this->addSql('CREATE INDEX type_idx ON digicomp_sequence_domain_model_insert (type)');
}
/**
* @param Schema $schema
2021-09-08 16:42:05 +02:00
* @throws AbortMigrationException
* @throws DoctrineDBALException
2016-06-24 20:40:25 +02:00
*/
2021-09-08 16:42:05 +02:00
public function down(Schema $schema): void
2016-06-24 20:40:25 +02:00
{
2021-09-08 16:42:05 +02:00
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on "mysql".');
2016-06-24 20:40:25 +02:00
$this->addSql('DROP INDEX type_idx ON digicomp_sequence_domain_model_insert');
}
}