<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
use Doctrine\DBAL\Exception;
final class Version20231126204741 extends AbstractMigration
{
public function getDescription(): string
{
return 'Adds the last route from the list, copies bus stops from PR6 to PR13, and adds courses for the new route';
}
public function up(Schema $schema): void
{
$this->connection->beginTransaction();
try {
// Adding the last route from the provided list
$this->addSql("INSERT INTO route (name, code_name) VALUES ('Fanal PR13', 'PR13')");
$this->addSql('ALTER TABLE route CHANGE code_name code_name VARCHAR(10) NOT NULL');
$this->addSql("INSERT INTO route (name, code_name) VALUES ('Pico do Areeiro PR1 Sunrise', 'PR1sunrise')");
// Copying bus stops from PR6 to PR13 using subquery
$this->addSql("INSERT INTO bus_stop (route_id, name, map_url, type, code_name, destination_time_from_start, return_time_from_start)
SELECT (SELECT id FROM route WHERE code_name = 'PR13' LIMIT 1), name, map_url, type, code_name, destination_time_from_start, return_time_from_start
FROM bus_stop
WHERE route_id = (SELECT id FROM route WHERE code_name = 'PR6' LIMIT 1)");
// Copy PR1 bus stop to PR1sunrise
$this->addSql("INSERT INTO bus_stop (route_id, name, map_url, type, code_name, destination_time_from_start, return_time_from_start)
SELECT (SELECT id FROM route WHERE code_name = 'PR1sunrise' LIMIT 1), name, map_url, type, code_name, destination_time_from_start, return_time_from_start
FROM bus_stop
WHERE route_id = (SELECT id FROM route WHERE code_name = 'PR1' LIMIT 1)");
// Adding courses for the new route
$this->addSql("INSERT INTO course (route_id, name, code_name, start_time)
VALUES ((SELECT id FROM route WHERE code_name = 'PR13' LIMIT 1), 'Morning', 'Rano', '1970-01-01 08:15:00'),
((SELECT id FROM route WHERE code_name = 'PR13' LIMIT 1), 'Noon', 'Południe', '1970-01-01 11:15:00'),
((SELECT id FROM route WHERE code_name = 'PR1sunrise' LIMIT 1), 'Sunrise', 'Wschód', '1970-01-01 05:40:00')");
$this->connection->commit();
} catch (Exception $e) {
$this->connection->rollBack();
throw $e;
}
}
public function down(Schema $schema): void
{
$this->connection->beginTransaction();
try {
// Removing courses for PR13 and PR1sunrise
$this->addSql("DELETE FROM course WHERE route_id IN (SELECT id FROM route WHERE code_name IN ('PR13', 'PR1sunrise'))");
// Removing bus stops for PR13 and PR1sunrise
$this->addSql("DELETE FROM bus_stop WHERE route_id IN (SELECT id FROM route WHERE code_name IN ('PR13', 'PR1sunrise'))");
// Removing routes PR13 and PR1sunrise
$this->addSql("DELETE FROM route WHERE code_name IN ('PR13', 'PR1sunrise')");
// Reverting the alteration made to the route table
$this->addSql('ALTER TABLE route CHANGE code_name code_name VARCHAR(255) NOT NULL');
$this->connection->commit();
} catch (Exception $e) {
$this->connection->rollBack();
throw $e;
}
}
}