migrations/Version20240809053125.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 Version20240809053125 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql("UPDATE terminology
  18.         SET singular_text = CASE
  19.             WHEN id = 6 THEN 'User Type'
  20.             WHEN id = 7 THEN 'User'
  21.             WHEN id = 9 THEN 'User Privilege'
  22.             WHEN id = 10 THEN 'Project'
  23.             WHEN id = 11 THEN 'Continuous Improvement Charter'
  24.             WHEN id = 12 THEN 'Action Plan'
  25.             WHEN id = 13 THEN 'Production Process'
  26.             WHEN id = 14 THEN 'Board'
  27.             WHEN id = 15 THEN 'Production Planning'
  28.             WHEN id = 16 THEN 'Daily Plan'
  29.         END,
  30.         plural_text = CASE
  31.             WHEN id = 6 THEN 'User Type'
  32.             WHEN id = 7 THEN 'Users'
  33.             WHEN id = 9 THEN 'User Privileges'
  34.             WHEN id = 10 THEN 'Project'
  35.             WHEN id = 11 THEN 'Continuous Improvement Charter'
  36.             WHEN id = 12 THEN 'Action Plan'
  37.             WHEN id = 13 THEN 'Production Process'
  38.             WHEN id = 14 THEN 'Boards'
  39.             WHEN id = 15 THEN 'Production Planning'
  40.             WHEN id = 16 THEN 'Daily Plans'
  41.         END
  42.         WHERE id IN (6, 7, 9, 10, 11, 12, 13, 14, 15, 16)
  43.         ");
  44.     }
  45.     public function down(Schema $schema): void
  46.     {
  47.         $this->addSql("UPDATE terminology
  48.             SET singular_text = CASE
  49.                 WHEN id = 6 THEN 'User Type'
  50.                 WHEN id = 7 THEN 'User'
  51.                 WHEN id = 9 THEN 'User Privilege'
  52.                 WHEN id = 10 THEN 'Project'
  53.                 WHEN id = 11 THEN 'Continuous Improvement Charter'
  54.                 WHEN id = 12 THEN 'Action Plan'
  55.                 WHEN id = 13 THEN 'Production process'
  56.                 WHEN id = 14 THEN 'board'
  57.                 WHEN id = 15 THEN 'Production planning'
  58.                 WHEN id = 16 THEN 'Daily plan'
  59.             END,
  60.             plural_text = CASE
  61.                 WHEN id = 6 THEN 'User Type'
  62.                 WHEN id = 7 THEN 'Users'
  63.                 WHEN id = 9 THEN 'User Privileges'
  64.                 WHEN id = 10 THEN 'Project'
  65.                 WHEN id = 11 THEN 'Continuous Improvement Charter'
  66.                 WHEN id = 12 THEN 'Action Plan'
  67.                 WHEN id = 13 THEN 'Production process'
  68.                 WHEN id = 14 THEN 'boards'
  69.                 WHEN id = 15 THEN 'Production planning'
  70.                 WHEN id = 16 THEN 'Daily plans'
  71.             END
  72.             WHERE id IN (6, 7, 9, 10, 11, 12, 13, 14, 15, 16)
  73.         ");
  74.     }
  75. }