migrations/Version20240923092807.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 Version20240923092807 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql("UPDATE `dp_kpi` 
  18.         SET `kpi_type` = 'basic', `visbility` = 'plan', `kpi_formula` = NULL
  19.         WHERE `kpi_id` = 37");
  20.         $this->addSql("UPDATE `dp_kpi` SET `visbility` = 'actual' , `kpi_status` = 'enabled' , `kpi_formula` = '_build_total_' , `kpi_name` = 'Daily Production Receipt' , `kpi_type` = 'derived'
  21.          WHERE `dp_kpi`.`kpi_id` = 36;");
  22.         $this->addSql("INSERT INTO `dp_oput_kpi_assign` (`uk_id`, `uk_kpi_id`, `product_id`, `product_var_id`, `uk_status`, `uk_created_at`, `uk_created_by`, `uk_updated_at`, `uk_updated_by`, `level_id`) VALUES (NULL, '36', NULL, NULL, 'enabled', '2024-09-23 11:20:44.000000', '1', NULL, NULL, '18'), (NULL, '36', NULL, NULL, 'enabled', '2024-09-23 11:20:44.000000', '1', NULL, NULL, '17');");
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         $this->addSql("UPDATE `dp_kpi` SET `kpi_formula` = '_build_total_', `kpi_type` = 'derived', `visbility` = 'both' WHERE `dp_kpi`.`kpi_id` = 37");
  27.         $this->addSql("UPDATE `dp_kpi` SET `visbility` = 'actual' , `kpi_status` = 'disabled' , `kpi_formula` = NULL , `kpi_name` = 'Daily Production Target' , `kpi_type` = 'basic'
  28.          WHERE `dp_kpi`.`kpi_id` = 36;");
  29.         $this->addSql("DELETE FROM `dp_oput_kpi_assign` WHERE `uk_kpi_id` = '36' AND `uk_status` = 'enabled' AND `uk_created_at` = '2024-09-23 11:20:44.000000' AND `uk_created_by` = '1' AND `level_id` IN ('17', '18');");
  30.     }
  31. }