migrations/Version20220407214957.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 Version20220407214957 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 move_store_to_store (id INT AUTO_INCREMENT NOT NULL, created_by_id INT DEFAULT NULL, updated_by_id INT DEFAULT NULL, from_store_id INT NOT NULL, to_store_id INT NOT NULL, product_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_D635CE6BB03A8386 (created_by_id), INDEX IDX_D635CE6B896DBBDE (updated_by_id), INDEX IDX_D635CE6BF67D488B (from_store_id), INDEX IDX_D635CE6B7DCB36BF (to_store_id), INDEX IDX_D635CE6B7B22C286 (product_store_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE move_store_to_store ADD CONSTRAINT FK_D635CE6BB03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
  20.         $this->addSql('ALTER TABLE move_store_to_store ADD CONSTRAINT FK_D635CE6B896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
  21.         $this->addSql('ALTER TABLE move_store_to_store ADD CONSTRAINT FK_D635CE6BF67D488B FOREIGN KEY (from_store_id) REFERENCES store (id)');
  22.         $this->addSql('ALTER TABLE move_store_to_store ADD CONSTRAINT FK_D635CE6B7DCB36BF FOREIGN KEY (to_store_id) REFERENCES store (id)');
  23.         $this->addSql('ALTER TABLE move_store_to_store ADD CONSTRAINT FK_D635CE6B7B22C286 FOREIGN KEY (product_store_id) REFERENCES product_store (id)');
  24.     }
  25.     public function down(Schema $schema): void
  26.     {
  27.         // this down() migration is auto-generated, please modify it to your needs
  28.         $this->addSql('DROP TABLE move_store_to_store');
  29.     }
  30. }