app/DoctrineMigrations/Version20251119181000.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 Version20251119181000 extends AbstractMigration
  7. {
  8.     public function getDescription(): string
  9.     {
  10.         return 'Add product_note column to dtb_product';
  11.     }
  12.     public function up(Schema $schema): void
  13.     {
  14.         $table $schema->getTable('dtb_product');
  15.         if (!$table->hasColumn('product_note')) {
  16.             $this->addSql('ALTER TABLE dtb_product ADD product_note TEXT DEFAULT NULL');
  17.         }
  18.     }
  19.     public function down(Schema $schema): void
  20.     {
  21.         $table $schema->getTable('dtb_product');
  22.         if ($table->hasColumn('product_note')) {
  23.             $this->addSql('ALTER TABLE dtb_product DROP COLUMN product_note');
  24.         }
  25.     }
  26. }