AzuraCast/app/src/Entity/Migration/Version20161122035237.php

39 lines
1.2 KiB
PHP

<?php
namespace Entity\Migration;
use Doctrine\DBAL\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
/**
* Auto-generated Migration: Please modify to your needs!
*/
class Version20161122035237 extends AbstractMigration
{
/**
* @param Schema $schema
*/
public function up(Schema $schema)
{
// this up() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql',
'Migration can only be executed safely on \'mysql\'.');
$this->addSql('DROP INDEX path_unique_idx ON station_media');
$this->addSql('CREATE UNIQUE INDEX path_unique_idx ON station_media (path, station_id)');
}
/**
* @param Schema $schema
*/
public function down(Schema $schema)
{
// this down() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql',
'Migration can only be executed safely on \'mysql\'.');
$this->addSql('DROP INDEX path_unique_idx ON station_media');
$this->addSql('CREATE UNIQUE INDEX path_unique_idx ON station_media (path)');
}
}