<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20230316181142 extends AbstractMigration
{
public function getDescription(): string
{
return 'Time start end return in bus stops';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE bus_stop ADD time_start TIME DEFAULT NULL, ADD time_return TIME DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE bus_stop DROP time_start, DROP time_return');
}
}