migrations/Version20220407194206.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 Version20220407194206 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('CREATE TABLE product_store_move (id INT AUTO_INCREMENT NOT NULL, created_by_id INT DEFAULT NULL, updated_by_id INT DEFAULT NULL, product_id INT NOT NULL, store_id INT NOT NULL, isActive TINYINT(1) DEFAULT NULL, date DATETIME NOT NULL, update_at DATETIME NOT NULL, quantity DOUBLE PRECISION NOT NULL, INDEX IDX_9EE0C69DB03A8386 (created_by_id), INDEX IDX_9EE0C69D896DBBDE (updated_by_id), INDEX IDX_9EE0C69D4584665A (product_id), INDEX IDX_9EE0C69DB092A811 (store_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE product_store_move ADD CONSTRAINT FK_9EE0C69DB03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
  20.         $this->addSql('ALTER TABLE product_store_move ADD CONSTRAINT FK_9EE0C69D896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
  21.         $this->addSql('ALTER TABLE product_store_move ADD CONSTRAINT FK_9EE0C69D4584665A FOREIGN KEY (product_id) REFERENCES product (id)');
  22.         $this->addSql('ALTER TABLE product_store_move ADD CONSTRAINT FK_9EE0C69DB092A811 FOREIGN KEY (store_id) REFERENCES store (id)');
  23.         $this->addSql('ALTER TABLE notification ADD order_product_id INT DEFAULT NULL');
  24.         $this->addSql('ALTER TABLE notification ADD CONSTRAINT FK_BF5476CAF65E9B0F FOREIGN KEY (order_product_id) REFERENCES `order` (id)');
  25.         $this->addSql('CREATE INDEX IDX_BF5476CAF65E9B0F ON notification (order_product_id)');
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.         $this->addSql('DROP TABLE product_store_move');
  31.         $this->addSql('ALTER TABLE notification DROP FOREIGN KEY FK_BF5476CAF65E9B0F');
  32.         $this->addSql('DROP INDEX IDX_BF5476CAF65E9B0F ON notification');
  33.         $this->addSql('ALTER TABLE notification DROP order_product_id');
  34.     }
  35. }