migrations/Version20241104133540.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 Version20241104133540 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql("CREATE TABLE `dp_data_temp` (
  18.             `id` int NOT NULL AUTO_INCREMENT,
  19.             `level_id` int NOT NULL,
  20.             `kpi_id` int NOT NULL,
  21.             `import_id` int NOT NULL,
  22.             `customer_jit_call_no` varchar(255) NOT NULL,
  23.             `data_date` datetime NOT NULL,
  24.             `data_value` int NOT NULL,
  25.             `created_by` int NOT NULL,
  26.             `created_at` datetime NOT NULL,
  27.             PRIMARY KEY (`id`),
  28.             KEY `level_id` (`level_id`),
  29.             KEY `kpi_id` (`kpi_id`),
  30.             KEY `created_by` (`created_by`),
  31.             KEY `import_id` (`import_id`),
  32.             CONSTRAINT `dp_data_temp_ibfk_1` FOREIGN KEY (`level_id`) REFERENCES `dp_levels` (`level_id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
  33.             CONSTRAINT `dp_data_temp_ibfk_2` FOREIGN KEY (`kpi_id`) REFERENCES `dp_kpi` (`kpi_id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
  34.             CONSTRAINT `dp_data_temp_ibfk_3` FOREIGN KEY (`created_by`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
  35.             CONSTRAINT `dp_data_temp_ibfk_4` FOREIGN KEY (`import_id`) REFERENCES `tc_imports` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
  36.             ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4");  
  37.         
  38.         
  39.     }
  40.     public function down(Schema $schema): void
  41.     {
  42.         $this->addSql("DROP TABLE IF EXISTS `dp_data_temp`");
  43.     }
  44. }