4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 05:06:37 +00:00
AzuraCast/src/Entity/Migration/Version20180818223558.php

34 lines
769 B
PHP

<?php
declare(strict_types=1);
namespace App\Entity\Migration;
use App\Entity\Migration\Traits\UpdateAllRecords;
use Doctrine\DBAL\Schema\Schema;
/**
* Add per-station-configurable number of history items to be shown in the NowPlaying API.
*/
final class Version20180818223558 extends AbstractMigration
{
use UpdateAllRecords;
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE station ADD api_history_items SMALLINT NOT NULL');
}
public function postup(Schema $schema): void
{
$this->updateAllRecords('station', [
'api_history_items' => 5,
]);
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE station DROP api_history_items');
}
}