4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-13 20:56:36 +00:00
AzuraCast/src/Entity/Migration/Version20230102192652.php

30 lines
684 B
PHP

<?php
declare(strict_types=1);
namespace App\Entity\Migration;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20230102192652 extends AbstractMigration
{
public function getDescription(): string
{
return 'Create Station branding config column, part 2.';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE station DROP default_album_art_url');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE station ADD default_album_art_url VARCHAR(255) DEFAULT NULL');
}
}