4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-13 20:56:36 +00:00
AzuraCast/src/Entity/Migration/Version20201010170333.php
2020-12-01 07:45:01 -06:00

27 lines
637 B
PHP

<?php
declare(strict_types=1);
namespace App\Entity\Migration;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20201010170333 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add genre field as a first-class meta field for Station Media.';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE station_media ADD genre varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE station_media DROP genre');
}
}