migrations/Version20230316181142.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. final class Version20230316181142 extends AbstractMigration
  7. {
  8.     public function getDescription(): string
  9.     {
  10.         return 'Time start end return in bus stops';
  11.     }
  12.     public function up(Schema $schema): void
  13.     {
  14.         // this up() migration is auto-generated, please modify it to your needs
  15.         $this->addSql('ALTER TABLE bus_stop ADD time_start TIME DEFAULT NULL, ADD time_return TIME DEFAULT NULL');
  16.     }
  17.     public function down(Schema $schema): void
  18.     {
  19.         // this down() migration is auto-generated, please modify it to your needs
  20.         $this->addSql('ALTER TABLE bus_stop DROP time_start, DROP time_return');
  21.     }
  22. }