AzuraCast/src/Entity/Migration/Version20180417041534.php

25 lines
549 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 Version20180417041534 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE custom_field ADD short_name VARCHAR(100) DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE custom_field DROP short_name');
}
}