4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-13 12:46:41 +00:00
AzuraCast/src/Entity/Migration/Version20180716185805.php
2020-10-14 17:19:31 -05:00

25 lines
591 B
PHP

<?php
declare(strict_types=1);
namespace App\Entity\Migration;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Make media length an INT instead of SMALLINT for songs longer than 9 hours (!)
*/
final class Version20180716185805 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE station_media CHANGE length length INT NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE station_media CHANGE length length SMALLINT NOT NULL');
}
}