<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20241010180718 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add not selected bus stop';
}
public function up(Schema $schema): void
{
$this->addSql("
INSERT INTO bus_stop (name, map_url, map_plus_code, type, code_name, destination_time_from_start, route_id)
SELECT 'Not selected', 'https://maps.google.com', '', 'NotSelected', 'notSelected', 0, r.id
FROM route r
");
}
public function down(Schema $schema): void
{
$this->addSql("DELETE FROM bus_stop WHERE type = 'NotSelected'");
}
}