migrations/Version20240930101132.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 Version20240930101132 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_PRODUCT_MANAGEMENT', 'PRODUCT_MANAGEMENT', 'PRODUCT_MANAGEMENT', '1', '0');");
  18.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_PRODUCT_VARIANT_MANAGEMENT', 'PRODUCT_MANAGEMENT', 'PRODUCT_VARIANT_MANAGEMENT', '1', '0');");
  19.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_CUSTOMER_MANAGEMENT', 'CUSTOMER_MANAGEMENT', 'CUSTOMER_MANAGEMENT', '1', '0');");
  20.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_BOARD_SETTINGS', 'PRODUCTION_PROCESS', 'BOARD_SETTINGS', '1', '0');");
  21.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_ASSY_STOCK_MANAGEMENT', 'PRODUCTION_PROCESS', 'ASSY_STOCK_MANAGEMENT', '1', '0');");
  22.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_SMT_STOCK_MANAGEMENT', 'PRODUCTION_PROCESS', 'SMT_STOCK_MANAGEMENT', '1', '0');");
  23.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_DAILY_PLAN', 'PRODUCTION_PLAN', 'DAILY_PLAN', '1', '0'), (NULL, 'ROLE_WORKORDER_DETAILS', 'PRODUCTION_PLAN', 'WORKORDER_DETAILS', '1', '0');");
  24.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_DOWNTIME_PLANNING', 'PRODUCTION_PLAN', 'DOWNTIME_PLANNING', '1', '0'), (NULL, 'ROLE_IMPORT_HISTORY', 'PRODUCTION_PLAN', 'IMPORT_HISTORY', '1', '0');");
  25.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_RUNNING_ORDER', 'REPORT', 'RUNNING_ORDER', '1', '0'), (NULL, 'ROLE_MASTER_PRODUCTION_SCHEDLE_REPORT', 'REPORT', 'MASTER_PRODUCTION_SCHEDLE_REPORT', '1', '0');");
  26.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_ACTIVITY_LOG', 'REPORT', 'ACTIVITY_LOG', '1', '0');");
  27.         $this->addSql("INSERT INTO `tc_user_roles` (`id`, `role_key`, `category`, `role`, `is_active`, `is_deleted`) VALUES (NULL, 'ROLE_MANAGE_SHIFT', 'CAPACITY_PLANNING', 'MANAGE_SHIFT', '1', '0'), (NULL, 'ROLE_OEE_DAILY_TARGET', 'CAPACITY_PLANNING', 'OEE_DAILY_TARGET', '1', '0');");
  28.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '0' WHERE `tc_user_roles`.`role_key` = 'ROLE_OPERATOR_SETTINGS';");
  29.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '0' WHERE `tc_user_roles`.`role_key` = 'ROLE_LINE_MANAGER_SETTINGS';");
  30.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '0' WHERE `tc_user_roles`.`role_key` = 'ROLE_TAKT_CONFIG';");
  31.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '0' WHERE `tc_user_roles`.`role_key` = 'ROLE_PRJCT_CONFIG';");
  32.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '0' WHERE `tc_user_roles`.`role_key` = 'ROLE_ACTION_SETTINGS';");
  33.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '0' WHERE `tc_user_roles`.`role_key` = 'ROLE_KPI_DASHBOARD_FITLERS_SETTINGS';");
  34.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '0' WHERE `tc_user_roles`.`role_key` = 'ROLE_KPI_DASHBOARD';");
  35.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '0' WHERE `tc_user_roles`.`role_key` = 'ROLE_TL_DASHBOARD_FITLERS_SETTINGS';");
  36.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '0' WHERE `tc_user_roles`.`role_key` = 'ROLE_TL_DASHBOARD';");
  37.     }
  38.     public function down(Schema $schema): void
  39.     {
  40.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` = 'ROLE_PRODUCT_MANAGEMENT';");
  41.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` = 'ROLE_PRODUCT_VARIANT_MANAGEMENT';");
  42.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` = 'ROLE_CUSTOMER_MANAGEMENT';");
  43.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` = 'ROLE_BOARD_SETTINGS';");
  44.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` = 'ROLE_ASSY_STOCK_MANAGEMENT';");
  45.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` = 'ROLE_SMT_STOCK_MANAGEMENT';");
  46.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` IN ('ROLE_DAILY_PLAN', 'ROLE_WORKORDER_DETAILS');");
  47.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` IN ('ROLE_DOWNTIME_PLANNING', 'ROLE_IMPORT_HISTORY');");
  48.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` IN ('ROLE_RUNNING_ORDER', 'ROLE_MASTER_PRODUCTION_SCHEDLE_REPORT');");
  49.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` = 'ROLE_ACTIVITY_LOG';");
  50.         $this->addSql("DELETE FROM `tc_user_roles` WHERE `role_key` IN ('ROLE_MANAGE_SHIFT', 'ROLE_OEE_DAILY_TARGET');");
  51.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '1' WHERE `role_key` = 'ROLE_OPERATOR_SETTINGS';");
  52.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '1' WHERE `role_key` = 'ROLE_LINE_MANAGER_SETTINGS';");
  53.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '1' WHERE `role_key` = 'ROLE_TAKT_CONFIG';");
  54.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '1' WHERE `role_key` = 'ROLE_PRJCT_CONFIG';");
  55.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '1' WHERE `role_key` = 'ROLE_ACTION_SETTINGS';");
  56.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '1' WHERE `role_key` = 'ROLE_KPI_DASHBOARD_FITLERS_SETTINGS';");
  57.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '1' WHERE `role_key` = 'ROLE_KPI_DASHBOARD';");
  58.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '1' WHERE `role_key` = 'ROLE_TL_DASHBOARD_FITLERS_SETTINGS';");
  59.         $this->addSql("UPDATE `tc_user_roles` SET `is_active` = '1' WHERE `role_key` = 'ROLE_TL_DASHBOARD';");
  60.     }
  61. }