migrations/Version20250203142007.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 Version20250203142007 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_production_dashboard_report` (
  18.         `id` int NOT NULL AUTO_INCREMENT,
  19.         `company_id` int NOT NULL,
  20.         `created_by_id` int NOT NULL,
  21.         `deleted_by_id` int DEFAULT NULL,
  22.         `block_type` varchar(255) DEFAULT NULL,
  23.         `block_label` varchar(255) DEFAULT NULL,
  24.         `chart_type` varchar(255) DEFAULT NULL,
  25.         `sort_order` int DEFAULT NULL,
  26.         `size` varchar(255) DEFAULT NULL,
  27.         `created_at` datetime DEFAULT NULL,
  28.         `is_deleted` int DEFAULT NULL,
  29.         `status` varchar(255) DEFAULT NULL,
  30.         PRIMARY KEY (`id`),
  31.         KEY `company_id` (`company_id`),
  32.         KEY `created_by_id` (`created_by_id`),
  33.         KEY `deleted_by_id` (`deleted_by_id`),
  34.         CONSTRAINT `dp_production_dashboard_report_ibfk_1` FOREIGN KEY (`company_id`) REFERENCES `company` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
  35.         CONSTRAINT `dp_production_dashboard_report_ibfk_2` FOREIGN KEY (`created_by_id`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
  36.         CONSTRAINT `dp_production_dashboard_report_ibfk_3` FOREIGN KEY (`deleted_by_id`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
  37.         ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4");
  38.     }
  39.     public function down(Schema $schema): void
  40.     {
  41.         $this->addSql("DROP TABLE dp_production_dashboard_report");
  42.     }
  43. }