point-tools/migrations/Version20170108153353.php

26 lines
759 B
PHP
Raw Normal View History

2017-01-08 15:36:55 +00:00
<?php
2023-03-12 15:15:25 +00:00
declare(strict_types=1);
namespace DoctrineMigrations;
2017-01-08 15:36:55 +00:00
use Doctrine\DBAL\Schema\Schema;
2023-03-12 15:15:25 +00:00
use Doctrine\Migrations\AbstractMigration;
2017-01-08 15:36:55 +00:00
2023-03-12 15:15:25 +00:00
final class Version20170108153353 extends AbstractMigration
2017-01-08 15:36:55 +00:00
{
2023-03-12 15:15:25 +00:00
public function up(Schema $schema): void
2017-01-08 15:36:55 +00:00
{
$this->abortIf($this->connection->getDatabasePlatform()->getName() != 'postgresql', 'Migration can only be executed safely on \'postgresql\'.');
$this->addSql('CREATE INDEX idx_tag_text ON posts.tags (text)');
}
2023-03-12 15:15:25 +00:00
public function down(Schema $schema): void
2017-01-08 15:36:55 +00:00
{
$this->abortIf($this->connection->getDatabasePlatform()->getName() != 'postgresql', 'Migration can only be executed safely on \'postgresql\'.');
$this->addSql('DROP INDEX posts.idx_tag_text');
}
}