migrations/Version20231126204741.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. use Doctrine\DBAL\Exception;
  7. final class Version20231126204741 extends AbstractMigration
  8. {
  9.     public function getDescription(): string
  10.     {
  11.         return 'Adds the last route from the list, copies bus stops from PR6 to PR13, and adds courses for the new route';
  12.     }
  13.     public function up(Schema $schema): void
  14.     {
  15.         $this->connection->beginTransaction();
  16.         try {
  17.             // Adding the last route from the provided list
  18.             $this->addSql("INSERT INTO route (name, code_name) VALUES ('Fanal PR13', 'PR13')");
  19.             $this->addSql('ALTER TABLE route CHANGE code_name code_name VARCHAR(10) NOT NULL');
  20.             $this->addSql("INSERT INTO route (name, code_name) VALUES ('Pico do Areeiro PR1 Sunrise', 'PR1sunrise')");
  21.             // Copying bus stops from PR6 to PR13 using subquery
  22.             $this->addSql("INSERT INTO bus_stop (route_id, name, map_url, type, code_name, destination_time_from_start, return_time_from_start)
  23.                            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 
  24.                            FROM bus_stop 
  25.                            WHERE route_id = (SELECT id FROM route WHERE code_name = 'PR6' LIMIT 1)");
  26.             // Copy PR1 bus stop to PR1sunrise
  27.             $this->addSql("INSERT INTO bus_stop (route_id, name, map_url, type, code_name, destination_time_from_start, return_time_from_start)
  28.                         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 
  29.                         FROM bus_stop 
  30.                         WHERE route_id = (SELECT id FROM route WHERE code_name = 'PR1' LIMIT 1)");
  31.             // Adding courses for the new route
  32.             $this->addSql("INSERT INTO course (route_id, name, code_name, start_time)
  33.                 VALUES ((SELECT id FROM route WHERE code_name = 'PR13' LIMIT 1), 'Morning', 'Rano', '1970-01-01 08:15:00'),
  34.                        ((SELECT id FROM route WHERE code_name = 'PR13' LIMIT 1), 'Noon', 'Południe', '1970-01-01 11:15:00'),
  35.                        ((SELECT id FROM route WHERE code_name = 'PR1sunrise' LIMIT 1), 'Sunrise', 'Wschód', '1970-01-01 05:40:00')");
  36.             $this->connection->commit();
  37.         } catch (Exception $e) {
  38.             $this->connection->rollBack();
  39.             throw $e;
  40.         }
  41.     }
  42.     public function down(Schema $schema): void
  43.     {
  44.         $this->connection->beginTransaction();
  45.         try {
  46.             // Removing courses for PR13 and PR1sunrise
  47.             $this->addSql("DELETE FROM course WHERE route_id IN (SELECT id FROM route WHERE code_name IN ('PR13', 'PR1sunrise'))");
  48.             // Removing bus stops for PR13 and PR1sunrise
  49.             $this->addSql("DELETE FROM bus_stop WHERE route_id IN (SELECT id FROM route WHERE code_name IN ('PR13', 'PR1sunrise'))");
  50.             // Removing routes PR13 and PR1sunrise
  51.             $this->addSql("DELETE FROM route WHERE code_name IN ('PR13', 'PR1sunrise')");
  52.             // Reverting the alteration made to the route table
  53.             $this->addSql('ALTER TABLE route CHANGE code_name code_name VARCHAR(255) NOT NULL');
  54.             $this->connection->commit();
  55.         } catch (Exception $e) {
  56.             $this->connection->rollBack();
  57.             throw $e;
  58.         }
  59.     }
  60. }