migrations/Version20241023123453.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 Version20241023123453 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 `company_notification_settings` CHANGE `notification_type` `notification_type` ENUM('shipping_due_date','downtime') CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL;");
  18.         $this->addSql("INSERT INTO `company_notification_settings` (`id`, `company_id`,`user_id`, `notification_type`, `notify_date`, `is_check`, `created_at`) VALUES ('2', '1','1', 'downtime', '5', '1', '2024-10-24 10:23:03.000000');");
  19.     }
  20.     public function down(Schema $schema): void
  21.     {
  22.         $this->addSql("ALTER TABLE `company_notification_settings` CHANGE `notification_type` `notification_type` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL;");
  23.         $this->addSql("DELETE FROM `company_notification_settings` WHERE `id` = '2' AND `company_id` = '1' AND `notification_type` = 'downtime';");
  24.     }
  25. }