Sylius/src/Sylius/Bundle/CoreBundle/Migrations/Version20210809121349.php
2024-10-22 20:48:05 +02:00

35 lines
858 B
PHP

<?php
/*
* This file is part of the Sylius package.
*
* (c) Sylius Sp. z o.o.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Bundle\CoreBundle\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Sylius\Bundle\CoreBundle\Doctrine\Migrations\AbstractMigration;
final class Version20210809121349 extends AbstractMigration
{
public function getDescription(): string
{
return 'Indexing of sylius_customer creation date';
}
public function up(Schema $schema): void
{
$this->addSql('CREATE INDEX created_at_index ON sylius_customer (created_at DESC)');
}
public function down(Schema $schema): void
{
$this->addSql('DROP INDEX created_at_index ON sylius_customer');
}
}