<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20230321172047 extends AbstractMigration
{
public function getDescription(): string
{
return 'Change timetable model';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE bus_stop ADD destination_time_from_start INT DEFAULT NULL, ADD return_time_from_start INT DEFAULT NULL, DROP time_start, DROP time_return');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE bus_stop ADD time_start TIME DEFAULT NULL, ADD time_return TIME DEFAULT NULL, DROP destination_time_from_start, DROP return_time_from_start');
}
}