migrations/Version20241216102120.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 Version20241216102120 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql("ALTER TABLE `dp_scrap_reasons` ADD `level_id` INT NULL AFTER `id`;");
  18.         $this->addSql("ALTER TABLE `dp_scrap_reasons` ADD FOREIGN KEY (`level_id`) REFERENCES `dp_levels`(`level_id`) ON DELETE RESTRICT ON UPDATE RESTRICT;");
  19.         $this->addSql("UPDATE `dp_scrap_reasons` SET `level_id` = '18', `comment` = 'FTS 1' WHERE `dp_scrap_reasons`.`id` = 1");
  20.         $this->addSql("UPDATE `dp_scrap_reasons` SET `level_id` = '18', `comment` = 'FTS 2' WHERE `dp_scrap_reasons`.`id` = 2");
  21.         $this->addSql("UPDATE `dp_scrap_reasons` SET `level_id` = '17', `comment` = 'Sigma 1' WHERE `dp_scrap_reasons`.`id` = 3");
  22.         $this->addSql("INSERT INTO `dp_scrap_reasons` (`id`, `level_id`, `comment`, `company_id`, `created_by`, `created_at`) VALUES  
  23.         ('4', '17', 'Sigma 2', '1', '1', '2024-12-16 09:43:10.000000'), 
  24.         ('5', '17', 'Sigma 3', '1', '1', '2024-12-16 09:43:10.000000'),
  25.         ('6', '17', 'Sigma 4', '1', '1', '2024-12-16 09:43:10.000000'),
  26.         ('7', '17', 'Sigma 5', '1', '1', '2024-12-16 09:43:10.000000'),
  27.         ('8', '17', 'Sigma 6', '1', '1', '2024-12-16 09:43:10.000000')");
  28.         
  29.     }
  30.     public function down(Schema $schema): void
  31.     {
  32.         $this->addSql("ALTER TABLE `dp_scrap_reasons` DROP FOREIGN KEY `dp_scrap_reasons_ibfk_3`;");
  33.         $this->addSql("ALTER TABLE `dp_scrap_reasons` DROP COLUMN `level_id`;");
  34.         $this->addSql("DELETE FROM `dp_scrap_reasons` WHERE `id` IN (4, 5, 6, 7, 8);");
  35.         
  36.     }
  37. }