migrations/Version20220819042749.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. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20220819042749 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17. //        $this->addSql("INSERT IGNORE INTO package_size(grams, height, width, depth, uuid)
  18. //                            VALUES
  19. //                            (100, 200, 120, 80, UUID()),
  20. //                            (250, 230, 160, 80, UUID()),
  21. //                            (500, 260, 190, 110, UUID()),
  22. //                            (750, 300, 200, 80, UUID()),
  23. //                            (1000, 300, 250, 100, UUID())
  24. //                            "
  25. //        );
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.     }
  31. }